Friends

Add friends via their profile or user search and you will be able to see if they are online

florenceale
Added topic SL and TP modify not working
Hi, in my EA, in the tester all works perfectly, but in the real mode, the EA buys and sell regularly, but when it has to modify a SL or TP, that is in many of my functions...it says "error #4109 trades is not allowed in the expert properties". I
florenceale
Added topic SL & TP
Hi, one question, is it possible to delete a TP or SL once added by script? I have also a custom function of OrderModify...but with parameters 0,0 it doesn't seem to work
florenceale
Added topic fill array with variables
Hi one question... every time i try to fill an array with variables it returns this mistake  "constant expression required" this is the code: string tab_ordini[ 8 ] = { ord_a, ord_a_reverse, ord_b, ord_b_reverse, ord_a_s, ord_a_s_reverse
florenceale
Added topic long order EA tester problems
Hi,  when I try my EA on the EA Tester from yesterday, the orders long don't work, just the short ones, but in the live version is all right, same script both work. The error that is returning is #138 ..." requote ". It should be somthing
florenceale
Added topic lost symbols
Hi, I have lost the frame with the symbols/currencies on the left, just those, i still see the Indicators list, Advisors etc.,  I'm looking and looking but i cant find the way to make them reapper, i dont need any script just basic interface
florenceale
Added topic spread value
Hi, one question, if I have the spread value in these terms int spread_value = MarketInfo ( "EURUSD" , MODE_SPREAD ); which is the most correct way to convert 5 into 0.00005 for example
florenceale
Added topic having candles
Hi, I have noticed that when my EA starts, by default it sets bars not candle. I would prefer have candles since the beginning automatically.  Is there a function that can help me? Regards
florenceale
Added topic On Init
Hi, one question, i noticed that when I ask to do an operation OnInit()...it does the operation when the EA starts, but also when I just change the Timeframe, from 1 minute, to 5 and so on. Is it possible to ask him to don't do the operation in case
florenceale
Added topic Array double
Hi  i would like to select for example all the last short orders and create an array done in this way order_short[number_by_order][ properties ]; for properties I mean: ticket, TP and SL, I will get it by OrderSelect and then OrderTicket()
florenceale
Added topic price point
Wich is the best and fastest way to get a result in Points? maybe 30, 50, 70 instead of 0.0000 actually i'm doing like this (price_TP - price_buy)* 100000 ; it works but maybe is not the best way... i try doing *Point but it doesnt look working
florenceale
Added topic switch, case etc.
Hi  would like to know if with switch function i can use a range instead of a precise value switch (i)      {        case 1 :          res=i; break ;
florenceale
Added topic find the position of a vertical line
Hi, my graph draws a series of vertical lines following specific indicators. If i want to check the position of the last i have found this function datetime    ObjectGetTimeByValue (    long     
florenceale
Added topic Learning the code syntax
Hello what does it mean this expression?...I'm confused with ? : etc. double price = (type == OP_SELL ) ? Ask : Bid ;
florenceale
Added topic last minute store ticks
Hi im trying to create an array with a lenght of 59, where each value stores the tick number second by second. i have simplified the code here, I can also define it from 1 to 59 using for or while but after few ticks it says " array out of range "
florenceale
Added topic Problems with the strategy tester
Hi guys, I'm new here. amax[ 0 ] = iHigh ( 0 , PERIOD_M1 , 0 );    amax[ 1 ] = iHigh ( 0 , PERIOD_M1 , 1 );    amax[ 2 ] = iHigh ( 0 , PERIOD_M1 , 2 );    amin[ 0 ] = iLow ( 0 , PERIOD_M1 , 0 );    amin[ 1 ] =
florenceale
Registered at MQL5.community