Pivot Reversal Start and Stop Time

Algyros

Newbie
Messages
5
Likes
0
I'm running a number of automated strategies that use Tradestation pivot reversals for long and short signals. I would like to be able to set a starting and ending time for the pivot reversals (in other words, as part of the pivot reversal code itself). Is there an easy way to do this? Thanks in advance.
 
there are many ways to interpret what you wrote.
you have to be more specific
 
there are many ways to interpret what you wrote.
you have to be more specific

Tradestation has Easy Language code for pivot reverals (long and short). I need to add a piece of code to the Tradestation code that sets a start and an end time to that code.
 
Tradestation has Easy Language code for pivot reverals (long and short). I need to add a piece of code to the Tradestation code that sets a start and an end time to that code.

that's easy:


Code:
input:
starttime(930);

if time >= starttime then
begin
.... {put your pivot code here}
end;
 
Easy for you, not so easy for me. But I really do appreciate your assistance.
Best,
Alex


that's easy:


Code:
input:
starttime(930);

if time >= starttime then
begin
.... {put your pivot code here}
end;
 
Top