Search found 12 matches

by MoeMiami
13 May 2024
Forum: MultiCharts
Topic: Different holidays / same exchange
Replies: 2
Views: 248

Re: Different holidays / same exchange

You can just exclude those dates in the code using an array of dates.

I guess you can also go to the quotes manager and delete the data from those dates manually, but then you will need to disable download missing historical data or change the symbol name so it won't download it again.
by MoeMiami
13 May 2024
Forum: MultiCharts .NET
Topic: Apex Trader Funding Rithmic connection problems
Replies: 2
Views: 326

Re: Apex Trader Funding Rithmic connection problems

Don't forget to change the data source too.

See Pic.
Capture.JPG
(39.5 KiB) Not downloaded yet
by MoeMiami
13 May 2024
Forum: MultiCharts
Topic: OnPositionUpdate
Replies: 1
Views: 284

Re: OnPositionUpdate

Vars: MP (0);
MP = Marketposition;

If MP<>MP[1] then print...
by MoeMiami
13 May 2024
Forum: MultiCharts
Topic: Strategy not producing same values as indicators putting out .
Replies: 9
Views: 674

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

Found out my problem with strategy syncing with indicator data has to do with data2. As long as I have a reference to data2 in the variables of any kind I instantly lose synchronization between my indicator and the strategy. Now I just need to figure out why. Any help appreciated. In the strategy a...
by MoeMiami
13 May 2024
Forum: MultiCharts .NET
Topic: ATR (Average True Range) calculation
Replies: 11
Views: 5522

Re: ATR (Average True Range) calculation

It is page 23 in "J. Welles Wilder, Jr. (June 1978). New Concepts in Technical Trading Systems. Greensboro, NC: Trend Research. ISBN 978-0-89459-027-6". He calculates it based on a 7 period ATR, so it is the EMA for 7 periods in his example. The period can be kept at 7 or any other integer greater ...
by MoeMiami
27 Apr 2024
Forum: MultiCharts
Topic: Suggestion: Break end of week session
Replies: 1
Views: 229

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: 308

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: 275

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: 342

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: 9
Views: 674

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: 308

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