Newbie Coding Question: Get deal results

 

Hi,

I would like to know, if and how it is possible to obtain trade results into an EAs code.

What I want to do is to have a counter that adds up when the last trade closed in loss.

Exemplary:

i=1

if (lasttradeclosednegative)
  i=i+1;

E.g., after 5 losing trades i would be at 6.

The parameter i will then be called by another function.

Can you help a me? :)


Kind regards

 
You can use OnTrade() or OnTradeTransaction() for that, or check the history of deals.
Reason: