RE: Finally a Better Elliott Wave that Doesn't Repaint and Makes Sense
https://www.optuma.com/blog/want-to-know-a-better-way-to-determine-trend
Hello, would someone please code the above?
It's a simple concept that seems to make a lot of sense. The link has all the details. My coding skills are embarrassingly limited, I'm still learning, but I coded this for an intraday chart, which is just something to get started, but not how it should be implemented.
Thank you in advance, I appreciate your help.
https://www.optuma.com/blog/want-to-know-a-better-way-to-determine-trend
Hello, would someone please code the above?
It's a simple concept that seems to make a lot of sense. The link has all the details. My coding skills are embarrassingly limited, I'm still learning, but I coded this for an intraday chart, which is just something to get started, but not how it should be implemented.
Ruby:
input length = 4;
input averageType = AverageType.WILDERS;
def ATR = MovingAverage(averageType, TrueRange(high(period=”DAY”)[1], close(period=”DAY”)[1], low(period=”DAY”)[1]), length);
plot DailyHigh = high(period=”DAY”)[1];
plot D_High_MinusATR = dailyhigh - ATR;
plot DailyLow = low(period=”DAY”)[1];
plot D_Low_PlusATR = dailylow + ATR;
Thank you in advance, I appreciate your help.
Last edited by a moderator: