EA-Setka-2/logic/rsi_cci/entry_point.mqh

28 lines
759 B
MQL5
Raw Permalink Normal View History

2025-05-30 14:50:44 +02:00
#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