View Single Post
  #4 (permalink)  
Old 12-23-2005, 04:05 PM
maxime_mataf maxime_mataf is offline
Junior Member
 
Join Date: Nov 2005
Posts: 11
maxime_mataf is on a distinguished road
Hi,

I want maximum : one Buy order and one Sell order per day and per chart.

So, in one day and on one chart, we can have :

1. no order
2. one Buy order
3. one Sell order
4. one Buy order and one Sell order.

That's all the possibilities.

I don't know if you have understand, I know my english is very bad so it's not simple to explain for me...


This is an extract from my EA : If you can help me...

Thx


PHP Code:
   int total=OrdersTotal();
   if(
total<1
    {
     if(
AccountFreeMargin()<(1000*Lots))
      {
       Print(
"Votre capital est insufisant. Votre marge est de "AccountFreeMargin());
      }
       
     if(
Ask==....blablabla 
Reply With Quote