drbmgojanur:
If you are going to post code . . . please use the SRC button: How to use the SRC button.
I DOWNLOADED THIS EA "puria" and this looks like this red letters in the code, what does this mean?
<CODE DELETED>
drbmgojanur:
Those are the parameters you see when you look at the Inputs tab of the EA.
I DOWNLOADED THIS EA "puria" and this looks like this red letters in the code, what does this mean?
RaptorUK:
Those are the parameters you see when you look at the Inputs tab of the EA.
ok thanks a lot
Those are the parameters you see when you look at the Inputs tab of the EA.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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