texoro
texoro
texoro
Added topic Icustom
Hello everyone, I wanted to use the function "icustom" to extract the values of some indicators in an expert, assuming that I have the source of these indicators (so I can modify them). I attach the image where in the "data window" I have the
texoro
Added topic CloseAll function
Guys good evening I made this function that should cl ose me all open orders void CloseAll( int Magic) {    for ( int i = OrdersTotal (); i >= 0 ; i-- )    {        if ( OrderSelect ( i
texoro
Added topic Take Profit Order Achieved but the order is not closed!
void TpModify( double tp) {    double minstoplevel=MarketInfo( Symbol (),MODE_STOPLEVEL);    double TakeProfit_B= NormalizeDouble (Ask+minstoplevel + tp* Point , Digits ); //BUY    double TakeProfit_S= NormalizeDouble
texoro
Added topic Counting open orders from an ae
Counting open orders from an ae Guys I created this function that should count orders opened by an ea  int OrdiniAperti( int MagicNumberint) { int count= 0 ; for ( int i = OrdersTotal ()- 1 ; i >= 0 ; i--) { int tcket = OrderSelect
texoro
Added topic Average touch
int BuySell = 0 ; int ToucMA( int TimeFrame, double MaPeriod) {    // Per convenzione si usa    // +1 = BUY    //  0 = Tutto bene, ma non fa niente    // -1 = SELL    double Ima = iMA ( NULL
texoro
Added topic Media with Levels
Good evening everyone I'm creating an ea that works on an average with "upper and lower level" now the code is as follows:      int BuySell= 0 ;      double SLBuy = 0 , TPBuy= 0 , SLSell = 0 , TPSell = 0 , Vol=
texoro
Added topic Help Button
Hi guys, I created a button object for a marker (the code is below), when I "press it" It is all right and it executes the part of the code " //Button is pressed ", the problem is when I "resume" that should execute the part of the code " //Button
texoro
Added topic Automatic Lots calculation
double CalcolaSize( double RischioIns){      double diff=MyStopLoss* Digits * Point ;      diff= NormalizeDouble (diff, Digits );      Vol=(AccountFreeMargin()*RischioIns/ 100 )/(MarketInfo(
texoro
Added topic Dashboard
Guys Good morning, this function allows a button to change the croos and time frame of the window in which this indicator is inserted: {    if (id== CHARTEVENT_OBJECT_CLICK && ObjectGet(sparam, OBJPROP_TYPE )== OBJ_BUTTON )
texoro
Added topic Decimal to full scale
Guys, I have this problem I did this function to determine the size of a candle The problem is that rightly returns me a Double value to me I would need entire ie the width of the candle, do you have ideas on how to solve? Thank you in advance 
texoro
Added topic brekin
Hello all friends I would like to graphize this situation (in the attached image ) and issue an alert when the shadow of the second candle is higher than the shadow of the first candle, I created the following function but I can not understand what
texoro
Added topic Help for a ScalpingDax EA whit BB
I can't write the service with the shadow of heiken ashi can someone help me write it? {          double LowerBB = iBands ( Symbol (),timeframe,PeriodBollBand,devBollBand, 0 , 0 , MODE_LOWER , 1 );
texoro
Added topic Cross Moving Avarage
This function shall have to create a vertical line by any cross between the two moving average, instead how it works now after any cross it prints a line for all the following candles.  Have someone have an idea to how to solve that issue? I
texoro
Added topic Trailing Stop
Hi guys then I'm trying to do the function of this This is the code But I did not understand why I do not change the order however in the function "TranlingStop " enters it (in fact I see the comment "tS") but it is not however does not perform the
texoro
Added topic closed chart indicator
Guys, I created this small indicator that should analyze more than one currency exchange rate; calling the function "AlertSupportAndResistence (symbol1, timeframeSimbol1)" on "x" declared currencies at the beginning. I would expect that even if I
texoro
Added topic TouchMedia
Hi guys, I did this function "TouchMedia ()" I would like it to work in the following way: 1) Buy Condition: when the average "touches" the lower shadow of the candle "n" and therefore at the candle "n + 1" should recall the function “AllertForBuy”
texoro
Added topic Help on program
Hi guys, I am working on this program: int start() {             Alert ( "Numero Ordini" +CountTrades(MagicID));       RsiPrec = iRSI ( NULL , 0 , RsiPeriod, PRICE_CLOSE
texoro
Added topic warnings buy and sell function
Hi guys, I made these 2 small methods: int OpenSell() { double SL=Ask - (StopLoss*Point); // Calculating SL of opened double TP=Ask + (TakeProfit*Point); // Calculating TP of opened OrderSend(Symbol(),OP_SELL,lotti,Bid,2,SL,TP,0,0,0,clrGreen);
texoro
Added topic BrekoutMediaMobile
Hello guys, the following function that I created should draw a green line if the "[i] n-1 [/ i]" candle is less than the average and if the candle [i] n [/ i] is greater than the average (in other words, if the average cuts from below to above the
texoro
Added topic help ima
for ( int i= 0 ; i<limit; i++)      {        //---- ma_shift set to 0 because SetIndexShift called abowe       ExtBlueBuffer[i]= iMA ( NULL , 0 ,media21Period, 0
12