top of page
Metastock Formulas New Free -
If the trade does not move +1% within 3 bars, exit. This prevents capital lock-up. Code: ProfitTarget := (EntryPrice * 1.01);
Breakout with volume filter BreakLevel = Highest(C, 20) VolFilter = V > Mov(V, 20,1) * 1.2 Buy = Cross(C, BreakLevel) AND VolFilter Sell = Cross(BreakLevel, C) metastock formulas new
Use + , - , > , < , and AND/OR for logical conditions. If the trade does not move +1% within 3 bars, exit
bottom of page
