[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Is there really another way


  • To: UWKaestner@xxxxxxxxxxx (Ulrich-Wolfram Kästner )
  • Subject: Re: Is there really another way
  • From: Bob Fulks <bfulks@xxxxxxxxxxxx>
  • Date: Wed, 8 Jul 1998 15:39:45 -0700
  • In-reply-to: <35A39841.9A9CD5D2@x-online.de>

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");