Random Walk Index...in easylanguage?

Should I do your laundry and wash your car too? Seriously, this is complex enough that if you cannot do it yourself, you will not be able to debug it.
 
http://www.universal-cloud.com/tc4s-20191116--/141/tc4s-20191116-141733.html
upload_2022-5-5_10-57-27.png


It does not appear to be free.
http://www.universal-cloud.com/tc4s-20191116.html
Trading Courses For Sale (TC4S)
 
I did a search over on TradeStation forum and found numerous topics with code and whatnot.

Here is an image of one (think I would have formatted it as a line rather than dot myself):
! Mitch.jpg
 
Here's the formula:

// Random Walk Index

input:Len(14);

Vars:RWIH(0), RWIL(0), ERW(0);

ERW=AvgTrueRange(Len)*SquareRoot(Len);

if ERW <> 0 then Begin
RWIH = (High - Low[Len])/ERW;
RWIL = (High[Len] - Low)/ERW;
end;

Plot1(RWIH , "HRWI") ;
Plot2(RWIL , "LRWI") ;
Plot3(1) ;
 
Here is the Random Walk Index - overlaid on the Daily NQ and YM - set at the Input value. I added the Lines.

NQ

RandomWalkIndex.png


YM

RandomWalkIndex_YM.png

 
Last edited:
Back
Top