Topic: Balance/Equity Chart

Hello,

The last days i missing into Balance/Equity Chart the curve. Where can i find  settings to restore this?

Niek

Re: Balance/Equity Chart

Go to the Control Panel and see the options under the second group - Balance / Equity chart.

3 (edited by Niek.de.Bruijn61 2015-07-23 12:37:54)

Re: Balance/Equity Chart

Popov, Thank you
With an demo strategy i have an curve but an older stratery (one week before i have curve) i don´t see now nothing because the programm no calculate it. When i open the journal of the demo then i see that when it open an position that the equity going up (see the sheet) I mean when an position going open then go the equity down.

Post's attachments

EUURUSD D1 - Journal.xlsx 19.1 kb, 2 downloads since 2015-07-23 

You don't have the permssions to download the attachments of this post.

Re: Balance/Equity Chart

Did you change something? Profile, entry amount... Do you have loaded data? Ambiguous bars?

There are so many variables that we can only guess what is the problem.

Please post a screenshot from the program and attach the strategy.

Re: Balance/Equity Chart

The problem was in the Choppiness Index custom indicator.

The indicator is fixed. You can re-download it from the repository.

Re: Balance/Equity Chart

I think that there is an logical error in Choppiness index indicator. This indicator should behave similarily like ADX.
https://www.linnsoft.com/techind/choppiness-index

Opening (Entry Signal)
Open a new long position or reverse a short position at the beginning of the bar when all the following logic conditions are satisfied:

Choppiness Index* (14) rises; and
ADX* (Exponential, Bar range, 14) rises.
Open a new short position or reverse a long position at the beginning of the bar when all the following logic conditions are satisfied:

Choppiness Index* (14) falls; and - should also be rises not falls.
ADX* (Exponential, Bar range, 14) rises.

7 (edited by Popov 2015-11-27 15:25:21)

Re: Balance/Equity Chart

You are right.
In that case line 185 has to be changed from:

OscillatorLogic(firstBar, previous, fdi, level, 100-level, ref Component[1], ref Component[2], indLogic);

to

NoDirectionOscillatorLogic(firstBar, previous, fdi, level, ref Component[1], indLogic);
Component[2].Value = Component[1].Value;

and also the MQL code has to be changed correspondingly.

Re: Balance/Equity Chart

I tried to changed the code, but I got error:

File name: ChoppinessIndex.cs
ERROR: "ChoppinessIndex" compilation failed.
     Line 185 Column 13: No overload for method 'NoDirectionOscillatorLogic' takes 8 arguments.

Re: Balance/Equity Chart

You are right. I corrected the previous code.

Re: Balance/Equity Chart

hallo , i have an idea but i dont know how to do this
the idea is like that
0 is curent candle and 1 ,2 ,3 are the candle before curent one
if

close 1>close2
and
close 2>close3
and
close3>close4
then open buy
close position with candle close
for sell the oposite
thanks

Re: Balance/Equity Chart

Use Candle Color indicator: Logic rule:  "Bullish Candle", Consecutive candles: 3.

http://s2.postimg.org/mnr962os5/screenshot_1277.jpg

Re: Balance/Equity Chart

I need your help to get this indicator to work properly. After the code change the logic is still incorrect:

Open a new long position at the beginning of the bar when all the following logic conditions are satisfied:
Choppiness Index* (14) rises; and
Choppiness Index* (14) falls.

Open a new short position at the beginning of the bar when all the following logic conditions are satisfied:
Choppiness Index* (14) falls; and
Choppiness Index* (14) rises

Re: Balance/Equity Chart

need your help to get this indicator to work properly. After the code change the logic is still incorrect:

I cannot modify the logic of another developers indicators. What I can do is to publish another indicator with modified logic rules.

I may do it tomorrow. Watch the forum  for an update.