28 lines
No EOL
759 B
MQL5
28 lines
No EOL
759 B
MQL5
#ifndef FILTERS_ENTRY_MQH
|
|
#define FILTERS_ENTRY_MQH
|
|
//--- Capteen RCI-CCI ---------------------
|
|
int
|
|
rsi=INVALID_HANDLE,
|
|
rsi1=INVALID_HANDLE,
|
|
cci=INVALID_HANDLE,
|
|
cci1=INVALID_HANDLE; //Handle of iRCI and iCCI indicators
|
|
|
|
|
|
static bool sigbuy=false,
|
|
sigsell=false,
|
|
sigbuy1=false,
|
|
sigsell1=false,
|
|
cci_buy = false,
|
|
cci_buy1 = false,
|
|
cci_sell = false,
|
|
cci_sell1 = false,
|
|
adx_buy = false,
|
|
adx_buy1 = false,
|
|
adx_sell = false,
|
|
adx_sell1 = false; //Indicators signals
|
|
static datetime OldRci=0, OldRci1=0, OldCci=0, OldCci1=0; // new bar check
|
|
//--- Capteen RCI-CCI ---------------------
|
|
|
|
|
|
|
|
#endif |