NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 191
Search: Posts Made By: vantojo
Forum: Traders Hideout April 20th, 2023, 01:28 PM
Replies: 13
Views: 1,860
Posted By vantojo
Anyone using Starlink for Scalp Trading?

Can anyone give feedback on using Starlink for a primary internet connection for day trading...

specifically for Scalping?

How is it working for you?
Forum: Trading Reviews and Vendors May 28th, 2022, 01:13 PM
Replies: 271
Views: 118,697
Posted By vantojo
Hello, I assume Apex is monitoring and will...

Hello,

I assume Apex is monitoring and will respond...

1) would it be possible to get a copy of the funded account application? (when one passes the evaluation period)

2) I would like to...
Forum: Treasury Notes and Bonds August 23rd, 2021, 10:39 AM
Replies: 26
Views: 8,775
Posted By vantojo
Study reversal patterns for the time interval you...

Study reversal patterns for the time interval you trade, and know the normal volume flows for your instrument and time of day.

As well, be aware of standard Economic News events.

Once you...
Forum: NinjaTrader October 10th, 2019, 12:42 PM
Replies: 6
Views: 1,876
Posted By vantojo
...........

yes, it was finished and posted quite some time ago in the Ninja 7 indicators on this forum...but not ported to NT 8.... please search the indicator archives if you want that version...good luck
Forum: NinjaTrader February 5th, 2018, 07:16 AM
Replies: 9
Views: 1,695
Posted By vantojo
Hi Ian, Thanks for the encouragement. I...

Hi Ian,

Thanks for the encouragement.

I have a lot of custom code, like indicator that place and manage orders, charts with toolbar buttons/click events, modification of the Chart Trader panel,...
Forum: NinjaTrader February 4th, 2018, 02:16 PM
Replies: 9
Views: 1,695
Posted By vantojo
Evaluation of NT8 in the market and on futures.io

Hello,

I'm back coding and trading after some long time recovering from a personal disaster.

It seems to me that the Ninjatrader forums here on futures.io, ninjascript development, sharing...
Forum: NinjaTrader November 24th, 2017, 06:32 PM
Replies: 4
Views: 2,288
Posted By vantojo
success....

Ok, with some hacking I have it working...it is simple once I could get myself out of the way.... :-)

The task at hand was to load SQL database parameters into public static variables during...
Forum: NinjaTrader November 23rd, 2017, 01:54 PM
Replies: 4
Views: 2,288
Posted By vantojo
first look

at first look it seems this may work...

probably OnWindowsCreated() in an AddOn to hook the Control Panel startup .... ??

will post if I get it working
Forum: NinjaTrader November 23rd, 2017, 01:52 PM
Replies: 3
Views: 2,236
Posted By vantojo
to NT8

I decided to port my strategies to NT8 and for now leave the chart indicators / manual trading support code in NT7...

NT8 seems to have the infrastructure (AddOn) to hook the Control Panel...
Forum: NinjaTrader November 22nd, 2017, 01:16 PM
Replies: 4
Views: 2,288
Posted By vantojo
How to start background process in NT 8 when Control Panel start?

Hello,

Does anyone have code samples of how to write a NT 8 AddOn that will start with Ninjatrader Control Panel?

I now have background processes running OK in NT7. But never really liked the...
Forum: NinjaTrader October 27th, 2017, 11:14 AM
Replies: 7
Views: 1,262
Posted By vantojo
............

so it seems the scope of static is across all running instances of the strategy...

C# is a different model than I'm used to

still, with help of people like you in futures.io, I have been able...
Forum: NinjaTrader October 27th, 2017, 09:51 AM
Replies: 7
Views: 1,262
Posted By vantojo
................

what is confusing to me is....

there is one strategy code base

but when multiple instance of the strategy are running...that is one each on multiple Instruments...

then I was expecting each...
Forum: NinjaTrader October 27th, 2017, 07:59 AM
Replies: 7
Views: 1,262
Posted By vantojo
thank you

I put this inside the loop

tester tl = new test();

works good...!!

though....

what is the difference between
Forum: NinjaTrader October 26th, 2017, 09:40 PM
Replies: 7
Views: 1,262
Posted By vantojo
Need help with C# list in Strategy

Hello, C# gurus...

Attached is a strategy that shows a conundrum (for me).

I have a List of Struct....

If the elements of the List Struct are Private I cannot access them inside the...
Forum: NinjaTrader October 25th, 2017, 11:16 AM
Replies: 3
Views: 2,236
Posted By vantojo
Hook when NT 7 Control Panel Launches?

I would like to launch some non-indicator, non-strategy processes before any indicators or strategies are loaded. I understand there is a way to do this in NT 8 perhaps, but not NT 7.

I'm able to...
Forum: NinjaTrader October 25th, 2017, 11:08 AM
Replies: 1
Views: 887
Posted By vantojo
Inter Process Communication

I am testing the MSMQ service and it is working well (so far) to provide messaging between a listening strategy and multiple indicators.

Had thought of Named Pipes, etc...but liked the idea of...
Forum: NinjaTrader October 17th, 2017, 06:58 PM
Replies: 11
Views: 2,996
Posted By vantojo
MessageQueue Class

For another use I've been testing the MessageQueue Class and it looks like it may work very well for this use....
...
Forum: NinjaTrader October 3rd, 2017, 02:32 PM
Replies: 11
Views: 2,996
Posted By vantojo
Thank you!

I will study this later, but that is exactly the concept I was looking for...
Forum: NinjaTrader October 1st, 2017, 06:58 PM
Replies: 11
Views: 2,996
Posted By vantojo
thanks

Thank you...will look at named pipes...seems not too hard...

can you post a sample of the service method code?

(just the core, not your private algos...)

:-)
Forum: NinjaTrader September 28th, 2017, 07:53 PM
Replies: 11
Views: 2,996
Posted By vantojo
.................

I was playing with TCP before and it might work...I could assign an instrument to a single port in the loopback and then have that be the matching between indicator ??

this would allow more than...
Forum: NinjaTrader September 28th, 2017, 03:21 PM
Replies: 11
Views: 2,996
Posted By vantojo
reply

Well, there would be one strategy running for each instrument. And somehow the indicator would need to match/sync to the strategy with the same Instrument.

I'm not a C# guy or a .Net guy....don't...
Forum: NinjaTrader September 28th, 2017, 12:11 PM
Replies: 11
Views: 2,996
Posted By vantojo
Trigger event in Strategy from Indicator

Hello,

For NT 7

I want to keep a de-coupled architecture, and send an instant trade alert to a running strategy from an indicator.

I want to have one strategy listening for signals from...
Forum: NinjaTrader September 13th, 2017, 05:17 PM
Replies: 2
Views: 2,116
Posted By vantojo
this works - from SAM028 -- thank you

protected override void OnRender (ChartControl chartControl, ChartScale chartScale)
{
// call the base.OnRender() to ensure standard Plots work as designed
base.OnRender(chartControl,...
Forum: NinjaTrader September 13th, 2017, 10:55 AM
Replies: 6
Views: 1,876
Posted By vantojo
thanks!

getting the price at Y is a good step forward

will test it next week

thank you!
Forum: NinjaTrader September 12th, 2017, 05:25 PM
Replies: 2
Views: 2,116
Posted By vantojo
NT8 -- Get Chart Price at Cursor / Click -- any code samples?

Hello,

Anyone have code samples of how to get the chart price at a cursor / pointer location (after mouse click) in NT 8?

In other words, the Y axis coordinate?

There was some in NT 7 that...
Showing results 1 to 25 of 191

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top