Accessing manual entries/exits info from an indicator

Questions about MultiCharts .NET and user contributed studies.
Fabrice
Posts: 182
Joined: 14 Jun 2011
Has thanked: 44 times
Been thanked: 30 times

Accessing manual entries/exits info from an indicator

Postby Fabrice » 15 Mar 2014

Hello,

How can an indicator access to historical trades made manually ? For example, to draw a line between the entry and the exit. I have found nothing in the forum and in Wiki about where to start to access the list of manual trades. I have tried this to get the position on each bar, but it always gives 0 :

Code: Select all

protected override void CalcBar(){
plot1.Set(StrategyInfo.MarketPosition);
}
Thanks.

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: Accessing manual entries/exits info from an indicator

Postby Henry MultiСharts » 19 Mar 2014

Hello Fabrice,

That is possible to access the required information using the TradeManager.

Fabrice
Posts: 182
Joined: 14 Jun 2011
Has thanked: 44 times
Been thanked: 30 times

Re: Accessing manual entries/exits info from an indicator

Postby Fabrice » 24 Mar 2014

Hello Henry,

I have never used TradeManager. Can TradeManager access to data in the Manual Trading Performance Report ?

Regards.

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: Accessing manual entries/exits info from an indicator

Postby Henry MultiСharts » 25 Mar 2014

Manual Trading Performance Report is built on the data stored in Order and position tracker Orders tab. The same data can be accessed using the TradeManager.

Unfortunately there is no direct access to the performance report values.


Return to “MultiCharts .NET”