PureBytes Links
Trading Reference Links
|
You'll want to change your SwingHigh and SwingLow identification statements to use closing prices rather than highs and lows. The following statements show what the statements might look like in your modified code:
SH = SwingHigh(1, C, 1, 2);
SL = SwingLow(1, C, 1, 2);
---- you wrote:
> Does anyone have a Zig-Zag indicator that utilizes closes instead of
> highs/lows?
>
> Thanks
>
|