PureBytes Links
Trading Reference Links
|
>You wrote:
>
>> We can create a "ShowMe" that will plot points on the highs and lows using
>> the SwingHigh and SwingLow functions in TradeStation.
>
>Please tell me how. I tried hard, but didn´t manage.
The following code will do it. Create it as a ShowMe.
Bob Fulks
----------------
Inputs: Strength(5);
Value1 = SwingHigh(1, H, Strength, Strength+1);
Value2 = SwingLow (1, L, Strength, Strength+1);
if Value1 > 0 then Plot1[Strength](Value1, "High");
if Value2 > 0 then Plot2[Strength](Value2, "Low");
|