This simple indicator will plot the highest and the lowest values of the last 20 bars.
!!! FOR EDUCATIONAL PURPOSES ONLY !!!! PLEASE READ DISCLAIMER POST!
input low_price = low;
input high_price = high;
plot down = lowest(low_price, 20);
plot up = highest(high_price,20);
Post a Comment
No comments:
Post a Comment