Trader1529
Trader1529
Trader1529
Added topic EA sends orders every seconds
Good morning you all, I wrote an Expert Advisor that opens order when all the condition I put meets. Analyzing that, I noticed a problem. When the condition meets it opens order, but if the order do not open because the free margin of my account
Trader1529
Added topic Counter orders per day
Good mornig, I'm writing an expert advisor that set a counter for the order opened on the current symbol. This is the code. int CountSymbolPositions= 0 ;    for ( int trade= OrdersTotal ()- 1 ;trade>= 0 ;trade--)
Trader1529
Added topic Send only one order when conditions meets
Good morning you all, I have a question. I'm coding an expert advison but I have a problem. I set many conditions and when all of them meets it should send a order (buy or sell it depends on the conditions). I'm testing it but it sends many orders at
Trader1529
Added topic Indicator meaning
Good morning everyone, can someone help me to understand the meaning of this part of the code of my indicator? What does it do?        if (val1 > 0 )        {
Trader1529
Added topic Time[0]
Good morning everyone. I need to know what is the function "Time[0]" in MQL4 and what it do. Can someone please help me
Trader1529
Added topic How to open order
enum ordertype   {    buy= 1 ,   // Buy    sell= 2 ,   // Sell    notrade= 0 , // No Order   }; //+------------------------------------------------------------------+
Trader1529
Added topic How to open order
count();        if (condition01== 1 )          {          tick= OrderSend ( Symbol (),OP_BUY,lot,Ask, 5 , 0 , 0 , "condition1" ,magic, 0
Trader1529
Added topic Send order at closure of the candle
count();        if (condition01== 1 )          {          tick= OrderSend ( Symbol (),OP_BUY,lot,Ask, 5 , 0 , 0 , "condition1" ,magic, 0
Trader1529
Left feedback to developer for job Simple EA
Trader1529
Added topic Select Days for execute EA on MT4
Good morning everyone, I wrote an Expert Advisor in MQL4 format, but I want that MT4 use my expert Advisor only in certains days (like Tuesday and Wednesday) but I don't know how to write it. Can someone please help me
Trader1529
Added topic Expert Advisor MQL4
Good morning everyone, I wrote an expert Advisor in mql4 format which open position at certain time of the day, it calculate number of lots, take profit and stop loss. Now I want to change it because it doesn’t work very well and I want that it open
Trader1529
Added topic Expert Advisor MT4
Good morning everyone, I wrote an expert Advisor in mql4 format which open position at certain time of the day, it calculate number of lots, take profit and stop loss. Now I want to change it because it doesn’t work very well and I want that it open
Trader1529
Added topic Expert Advisor on MT4
Good evening everyone, I wrote an Expert Advisor, which open position at certain time of the day but I have a problem. When I upload the EA on 10 currencies, I don’t work in all this 10 currecies, but only in some of them. For example, today it works
Trader1529
Added topic Deactivate Log files
Good morning everyone, Few months ago I wrote my personal Expert Advisor and 3 days ago I tested it on a Demo version of my trading account. When the EA is running, every day my PC create logs files (I can't open them because when I try to open a
Trader1529
Left feedback to developer for job Simple EA
Trader1529
Added topic How to write a simple expert advisor
Good morning everyone,  I want to write a simple expert advisor , but I don't know how to do it. Can someone help me? I want that my EA do this:   - At "Time T" it opens "Buy" or "Sell" position with "Amount z"   - It close the
Trader1529
Added topic Expert Advisor
Good afternoon everyone, I'm searching an Expert Advisor in which I can set: - The percentage of the initial capital to invest - The take profit and the loss in percentage - The position to open (long or short) - The time to open the position (for
Trader1529
Added topic Take profit and stop loss in percentage
G ood afternoon you all, I have this Expert Advisor in which I can set  take profit  and stop loss in points. I want to change this parameter with the percentage of the investiment. For example, when the profit is at 25% of the amount
Trader1529
Added topic EA take profit and stop loss in percentage
Good evening you all, I have this Expert Advisor in which I can set  take profit  and stop loss in points. I want to change this parameter with the percentage of the investiment. For example, when the profit is at 25% of the amount invested
Trader1529
Added topic Take profit and stop loss in percentage
Good afternoon you all, I have this Expert Advisor in which I can set take profit and stop loss in points. I want to change this parameter with the percentage of the investiment. For example, when the profit is at 25% of the amount invested or when
12