I will look that over thanks! So bummed ToS has the strategy programmer for backtesting/signalling but not for actual automatic trading...
NT7 can port equity orders to TD account.
I will look that over thanks! So bummed ToS has the strategy programmer for backtesting/signalling but not for actual automatic trading...
NT7 can port equity orders to TD account.
Definitely worth the full 9 minutes...For IB, I would say multicharts, the easylanguage version you can learn the basics very quickly. If you get stuck on something basic, will be happy to help, or there are people 100x better at EL than me that can help on here somewhere. It has some shortcomings but is still pretty powerful, and compared to writing strategies in ninja, it's pretty basic.
For instance, here is a built in strat for buy on ma cross
inputs: Price( Close ), Length( 9 ), ConfirmBars( 1 ) ;
variables: var0( 0 ) ;
condition1 = Price > AverageFC( Price, Length ) ;
if condition1 then
var0 = var0 + 1
else
var0 = 0 ;
condition1 = CurrentBar > ConfirmBars and var0 = ConfirmBars ;
if condition1 then
Buy ( "MACrossLE" ) next bar at market ;