PLEASE EXPLAIN OR HINT ME

 


I DOWNLOADED THIS EA "puria" and this looks like this red letters in the code, what does this mean?


/+------------------------------------------------------------------+

//|                                                        Puria.mq5 |
//|                                       Copyright 2010, AM2 Group. |
//|                                         http://www.am2_group.net |
//+------------------------------------------------------------------+
#property copyright "Copyright 2010, AM2 Group."
#property link      "http://www.am2_group.net"
#property version   "1.00"
//--- input parameters
input int      StopLoss=14;      // Stop Loss
input int      TakeProfit=15;    // Take Profit
input int      MA1_Period=75;    // Moving Average 1 period
input int      MA2_Period=85;    // Moving Average 2 period
input int      MA3_Period=5;     // Moving Average 3 period
input int      EA_Magic=12345;   // Magic Number of an EA

input double   Lot=0.1;          // Number of lots to trade
//--- global variables
int macdHandle;    // MACD indicator handle
int ma75Handle;    // Moving Average 1 indicator handle
int ma85Handle;    // Moving Average 2 indicator handle

 
drbmgojanur:


I DOWNLOADED THIS EA "puria" and this looks like this red letters in the code, what does this mean?


<CODE DELETED>

If you are going to post code  . . .    please use the   SRC   button: How to use the   SRC   button. 
 
drbmgojanur:


I DOWNLOADED THIS EA "puria" and this looks like this red letters in the code, what does this mean?

Those are the parameters you see when you look at the Inputs tab of the EA.
 
RaptorUK:
Those are the parameters you see when you look at the Inputs tab of the EA.
ok thanks a lot