Functions: These are pre-built commands like Mov() for moving averages or RSI() for Relative Strength Index.
GapPercent := (O - Ref(C, -1)) / Ref(C, -1) * 100;
GapUp := GapPercent > 1.5;
VolumeSurge := V > Ref(V, -1) * 1.5;
BullFlag := GapUp AND VolumeSurge AND C > O;
O (Open), H (High), L (Low), C (Close), V (Volume), OI (Open Interest). metastock formulas new
Optimized WRO/WSO Indicators: Newer iterations of the WRO (Willard Rice Oscillator) and WSO (Willard Support Oscillator) formulas run up to 40 times faster than legacy versions. Functions : These are pre-built commands like Mov()