Search found 2 matches

by ravidevt
23 Jun 2017
Forum: MultiCharts
Topic: WilliamPercentR Indicaror
Replies: 1
Views: 688

WilliamPercentR Indicaror

Hi, Kindly convert this into easy language code input length = 30; input overBought = 80; input overSold = 20; def hh = Highest(high, length); def ll = Lowest(low, length); def result = if hh == ll then -100 else (hh - close) / (hh - ll) * (-100); plot WR = if result > 0 then 0 else result; WR.SetDe...
by ravidevt
02 Sep 2015
Forum: MultiCharts
Topic: Inside bar breakout - Need to fix
Replies: 1
Views: 1300

Inside bar breakout - Need to fix

Kindly convert this code for Multichart (code working in ActFX): const IndicatorName = 'Inside Bars'; Layout = Embedded; var InsB_up, InsB_dn : TPointGraph; Dist, NumberOfBars, MinLength, count_ins_bars: Integer; start_pos, length_pos: array of integer; allow:boolean; procedure CreateSettings; begin...

Go to advanced search