//+------------------------------------------------------------------+
//| TMA+CG.mq4 |
//| mladen |
//| arrowse coded acording to idea presented by rajiv |
//+------------------------------------------------------------------+
#property copyright "rajivxxx"
#property link "rajivxxx@gmail.com"
#property indicator_chart_window
#property indicator_buffers 10
#property indicator_color1 clrBlue
#property indicator_color2 clrBlue
#property indicator_color3 clrBlue
#property indicator_color4 Red
#property indicator_color5 Blue
#property indicator_color6 clrLightGreen
#property indicator_color7 clrLightGreen
#property indicator_color8 clrLightGreen
//#property indicator_style1 STYLE_DOT
//#property indicator_style2 STYLE_DOT
//#property indicator_style3 STYLE_DOT
//#property indicator_style6 STYLE_DOT
//#property indicator_style7 STYLE_DOT
//
//
//
//
//
extern string TimeFrame = "current time frame";
extern int HalfLength = 56;
extern int Price = PRICE_WEIGHTED;
extern double BandsDeviations = 2.1;
extern bool Interpolate = true;
extern bool alertsOn = true;
extern bool alertsOnCurrent = true;
extern bool alertsOnHighLow = true;
extern bool alertsMessage = true;
extern bool alertsSound = true;
extern bool alertsEmail = true;
extern color Kanal=clrLightGreen;
extern bool Interpolate = true;
static bool alertsOn = true;
static bool alertsOnCurrent = true;
static bool alertsOnHighLow = true;
static bool alertsMessage = true;
static bool alertsSound = true;
static bool alertsEmail = true;
Ошибка: 404
К сожалению, такой страницы не существует, либо у Вас недостаточно прав доступа для ее просмотра.
extern double TakeProfit=40; // язь
extern double Lots=0.1; // лот
extern double InitialStop=1300; // лось
extern double TrailingStop=20; // трал
extern int MaxTrades=10; // количество одновременно открываемых ордеров
extern int Pips=15; // шаг трала
extern int SecureProfit=10; // профит в рублях
extern int AccountProtection=1; // 1-закрытие по профиту
extern int OrderstoProtect=3; // закрытие ордеров по условию if(OpenOrders>=(MaxTrades-OrderstoProtect) && AccountProtection==1)
extern int ReverseCondition=0; // реверс
extern double EURUSDPipValue = 10; // профит в рублях для пары
extern double GBPUSDPipValue = 10;
extern double USDCHFPipValue = 10;
extern double USDJPYPipValue = 9.715;
extern int StartYear=2000; // год старта совы
extern int StartMonth=1; // месяц старта совы
extern int EndYear=2016; // год. после сова не работает
extern int EndMonth= 12; // месяц. после сова не работает
extern int StartTime=22; // начало торговли
extern int EndTime = 8; // окончание торговли
extern int mm=0; // >0 лот от баланса
extern int risk=12; // риск на ордер от баланса
extern int AccountisNormal=0; // 1 - mm вкл.
extern int StartYear=2005;
extern int StartMonth=1;
extern int EndYear=2006;
extern int EndMonth= 12;
AM2