Search found 6 matches

by MoeMiami
27 Apr 2024
Forum: MultiCharts
Topic: Suggestion: Break end of week session
Replies: 0
Views: 57

Suggestion: Break end of week session

I would like to suggest you add an option to break bars such as tick bars at end of week instead of end of every session. At the end of week is when significant gaps happen so it would only make sense to break at the end of last session of the week without having to break every session.
by MoeMiami
16 Apr 2024
Forum: MultiCharts
Topic: Issues with Renko ATR bars
Replies: 3
Views: 234

Re: Issues with Renko ATR bars

Hello Moe, When you plot Renko on OHLC values, Renko bars include the lows and highs of the bar. If you plot Renko on Close, Renko will be plotted on Close values only, so this is expected behavior. Range indicator is calculated from the beginning of the data series, while ATR Renko with Break On S...
by MoeMiami
14 Apr 2024
Forum: MultiCharts
Topic: Memorize value on array
Replies: 1
Views: 221

Re: Memorize value on array

Inputs: Length ( 4 ); Vars: LastWeekVal ( 0 ); Arrays: Highs[50]( 0 ), Lows[50]( 0 ); if HighW(1) <> LastWeekVal then begin for Value1 = Length downto 2 begin Highs[Value1]=Highs[Value1-1]; Lows[Value1]=Lows[Value1-1]; end; Highs[1] = HighW(1); Lows[1]=LowW(1); LastWeekVal = HighW(1); end; {for tes...
by MoeMiami
14 Apr 2024
Forum: MultiCharts
Topic: Orders Partial Take Profit
Replies: 4
Views: 218

Re: Orders Partial Take Profit

1. You would want to use an entrylabel see here https://www.multicharts.com/trading-software/index.php?title=Entry Sell from entry ("Entry1") at PT1. 2. pt1 = close + 2 * Multiplier * atr; will update on every bar so you would need to specify the close of the entry bar. you can use something like th...
by MoeMiami
14 Apr 2024
Forum: MultiCharts
Topic: Strategy not producing same values as indicators putting out .
Replies: 8
Views: 303

Re: Strategy not producing same values as indicators putting out .

Did you uncheck the update on every tick option on the indicator? It should be the same once you uncheck that.
by MoeMiami
14 Apr 2024
Forum: MultiCharts
Topic: Issues with Renko ATR bars
Replies: 3
Views: 234

Issues with Renko ATR bars

Hello, I'm new to MC and would like to note a few basic issues I found with the Renko charts. 1. First issue with bars plotting before they actually close. please see the screenshot below, I plotted the close price of the renko chart on the 5 min chart and you can see the plot is way above the Highs...

Go to advanced search