Timed, automated entry with TradeStation

simcom

Active member
Messages
142
Likes
8
Does anybody know if it is possible to get TS (or another decent program) to place trades only at particular times?

I would want to trade at the same time each day, with the parameters of the trade (direction, stop etc.) being determined by other signals which should be fairly easy to program in.

Cheers.
 
inputs: TradeTime ( 0900 ); {I set it to 0900 as an example, you can set it to anything you want}

if time = TradeTime then begin

If .... {your conditions follow}

end;

etc.

If you want to trade only during a given period:

inputs: StartTime ( 0900 ), EndTime ( 1000 );

if time >= StartTime and time < EndTime then begin

if...

end;

etc.
 
I do not consider myself an Easylanguage expert, there are some real experts around here. Good luck to you!
 
Top