FullSTO2
Full Stochastic 2
Description
An alternate rendering of the FullSTO indicator.
Different colors are used to color the lines when they cross.
Category
Extended
Parameters
N ( Default: 14
Min: 1 Max: 100 )
M1 ( Default: 3
Min: 1 Max: 50 )
M2 ( Default: 9
Min: 1 Max: 50 )
Chart Script
KFast:=(CLOSE-LLV(LOW,N))/(HHV(HIGH,N)-LLV(LOW,N))*100;
K:MA(KFast,M1),,ColorDarkGreen,Width2,HighQuality;
D:MA(K,M2);
PartLine(K>=D,K),ColorRed,Width2,HighQuality;