Search found 7 matches

by DonDuck
26 Mar 2024
Forum: MultiCharts .NET
Topic: Data and dom problem in 15
Replies: 4
Views: 233

Re: Data and dom problem in 15

I have also been experiencing data / chart drawing performance issues since updating to .NET 15.0.

Thanks.
by DonDuck
13 May 2023
Forum: MultiCharts
Topic: Precise backtesting on Renko charts
Replies: 5
Views: 751

Re: Precise backtesting on Renko charts

I think this should be possible. Chart 1 is the Trade data series Chart 2 is the Ask data series Chart 3 is the Bid Data Series My biggest problem is that I cannot find the bid and ask data series for ES. Doe anyone know where I can find that data? If I had it, I could run the test. If I understand...
by DonDuck
17 Apr 2022
Forum: MultiCharts
Topic: Walk-Forward Optimization Produces Zero Results
Replies: 6
Views: 1073

Re: Walk-Forward Optimization Produces Zero Results

My WFO stopped working as well a few months ago (it was working before...). I have not determined the problem. Update: I may have resolved my issue. I ran the Matrix optimization to find the run / % values then used those values in WFO. In my case it was 30 runs using 25% of the first run. I hope t...
by DonDuck
17 Apr 2022
Forum: MultiCharts
Topic: Walk-Forward Optimization Produces Zero Results
Replies: 6
Views: 1073

Re: Walk-Forward Optimization Produces Zero Results

My WFO stopped working as well a few months ago (it was working before...). I have not determined the problem.
by DonDuck
13 Jan 2022
Forum: MultiCharts .NET
Topic: Strategy Time filtering [SOLVED]
Replies: 8
Views: 7285

Re: Strategy Time filtering [SOLVED]

The example above has been provided for Realtime trading: bool _Condition = DateTime.Now.TimeOfDay >= _tStart && DateTime.Now.TimeOfDay <= _tEnd; For Backtesting please use the following code: bool _Condition = Bars.TimeValue.TimeOfDay >= _tStart && Bars.TimeValue.TimeOfDay <= _tEnd; As this is an ...
by DonDuck
21 Oct 2021
Forum: MultiCharts
Topic: Multiple timeframes - Weird indicator issue
Replies: 8
Views: 1563

Re: Multiple timeframes - Weird indicator issue

Hi DonDuck, No, there is no way to do so. The data series to base any indicator on can only be set as described in my post above. Referencing the second data series in the indicator's code is not obligatory. Kate, Thank you for the response. I had scoured the documentation and just assumed I missed...
by DonDuck
20 Oct 2021
Forum: MultiCharts
Topic: Multiple timeframes - Weird indicator issue
Replies: 8
Views: 1563

Re: Multiple timeframes - Weird indicator issue

Hello masber2000, You can base the indicators calculation on different data series in the Format Indicator window -> Properties tab -> Base Study On. More info about that setting in our Wiki . Kate, is there a way of performing this action within Powerlanguage? I am using two data series in the str...

Go to advanced search