diff --git a/Include/AZ-INVEST/SDK/CustomChartInputs.mqh b/Include/AZ-INVEST/SDK/CustomChartInputs.mqh index 2a6f609..7b2e6cc 100644 Binary files a/Include/AZ-INVEST/SDK/CustomChartInputs.mqh and b/Include/AZ-INVEST/SDK/CustomChartInputs.mqh differ diff --git a/Include/AZ-INVEST/SDK/RangeBarCustomChartSettings.mqh b/Include/AZ-INVEST/SDK/RangeBarCustomChartSettings.mqh index 5b03fd6..9bcea9f 100644 --- a/Include/AZ-INVEST/SDK/RangeBarCustomChartSettings.mqh +++ b/Include/AZ-INVEST/SDK/RangeBarCustomChartSettings.mqh @@ -12,7 +12,7 @@ #ifdef SHOW_INDICATOR_INPUTS #ifdef MQL5_MARKET_DEMO // hardcoded values - int barSizeInTicks = 180; // Range bar size (in points) + int barSizeInTicks = 180; // Range bar size (in ticks) ENUM_BOOL atrEnabled = false; // Enable ATR based bar size calculation ENUM_TIMEFRAMES atrTimeFrame = PERIOD_D1; // Use ATR period int atrPeriod = 14; // ATR period @@ -23,7 +23,7 @@ #else // user defined settings - input int barSizeInTicks = 100; // Range bar size (in points) + input int barSizeInTicks = 20; // Range bar size (in ticks) input ENUM_BOOL atrEnabled = false; // Enable ATR based bar size calculation ENUM_TIMEFRAMES atrTimeFrame = PERIOD_D1; // Use ATR period input int atrPeriod = 14; // ATR period @@ -34,7 +34,7 @@ #endif #else // don't SHOW_INDICATOR_INPUTS - int barSizeInTicks = 180; // Range bar size (in points) + int barSizeInTicks = 180; // Range bar size (in ticks) ENUM_BOOL atrEnabled = false; // Enable ATR based bar size calculation ENUM_TIMEFRAMES atrTimeFrame = PERIOD_D1; // Use ATR period int atrPeriod = 14; // ATR period diff --git a/Indicators/RangeBars/RangeBars_ATR.mq5 b/Indicators/RangeBars/RangeBars_ATR.mq5 index c433dec..10968da 100644 --- a/Indicators/RangeBars/RangeBars_ATR.mq5 +++ b/Indicators/RangeBars/RangeBars_ATR.mq5 @@ -6,6 +6,7 @@ #property copyright "2009-2017, MetaQuotes Software Corp." #property link "http://www.mql5.com" #property description "Average True Range" +#property description "Adapted for use with TickChart by Artur Zas." //--- indicator settings #property indicator_separate_window #property indicator_buffers 2 diff --git a/Indicators/RangeBars/RangeBars_CCI.mq5 b/Indicators/RangeBars/RangeBars_CCI.mq5 index 0e297c5..499c744 100644 --- a/Indicators/RangeBars/RangeBars_CCI.mq5 +++ b/Indicators/RangeBars/RangeBars_CCI.mq5 @@ -8,6 +8,7 @@ #property copyright "2009, MetaQuotes Software Corp." #property link "http://www.mql5.com" #property description "Commodity Channel Index" +#property description "Adapted for use with TickChart by Artur Zas." #include //--- #property indicator_separate_window diff --git a/Indicators/RangeBars/RangeBars_Ichimoku.mq5 b/Indicators/RangeBars/RangeBars_Ichimoku.mq5 index 267ff08..1acf9db 100644 --- a/Indicators/RangeBars/RangeBars_Ichimoku.mq5 +++ b/Indicators/RangeBars/RangeBars_Ichimoku.mq5 @@ -6,6 +6,7 @@ #property copyright "2009-2017, MetaQuotes Software Corp." #property link "http://www.mql5.com" #property description "Ichimoku Kinko Hyo" +#property description "Adapted for use with TickChart by Artur Zas." //--- indicator settings #property indicator_chart_window #property indicator_buffers 5 diff --git a/Indicators/RangeBars/RangeBars_ParabolicSAR.mq5 b/Indicators/RangeBars/RangeBars_ParabolicSAR.mq5 index 67975f6..c8b75b8 100644 --- a/Indicators/RangeBars/RangeBars_ParabolicSAR.mq5 +++ b/Indicators/RangeBars/RangeBars_ParabolicSAR.mq5 @@ -5,6 +5,7 @@ //+------------------------------------------------------------------+ #property copyright "2009-2017, MetaQuotes Software Corp." #property link "http://www.mql5.com" +#property description "Adapted for use with TickChart by Artur Zas." //--- indicator settings #property indicator_chart_window #property indicator_buffers 3 diff --git a/Indicators/RangeBars/RangeBars_Stochastic.mq5 b/Indicators/RangeBars/RangeBars_Stochastic.mq5 index f390a88..b6105e9 100644 --- a/Indicators/RangeBars/RangeBars_Stochastic.mq5 +++ b/Indicators/RangeBars/RangeBars_Stochastic.mq5 @@ -5,6 +5,7 @@ //+------------------------------------------------------------------+ #property copyright "2009, MetaQuotes Software Corp." #property link "http://www.mql5.com" +#property description "Adapted for use with TickChart by Artur Zas." //--- indicator settings #property indicator_separate_window #property indicator_buffers 4 diff --git a/Indicators/RangeBars/RangeBars_TimeLine.mq5 b/Indicators/RangeBars/RangeBars_TimeLine.mq5 index 747441d..aea953c 100644 --- a/Indicators/RangeBars/RangeBars_TimeLine.mq5 +++ b/Indicators/RangeBars/RangeBars_TimeLine.mq5 @@ -19,7 +19,7 @@ enum ENUM_DISPLAY_FORMAT DisplayFormat2, // 25.01 10:55 }; -input color InpTextColor = clrWhiteSmoke; // Font color +input color InpTextColor = clrBlack; // Font color input int InpFontSize = 9; // Font size input int InpSpacing = 3; // Date/Time spacing factor input ENUM_DISPLAY_FORMAT InpDispFormat = DisplayFormat1; // Display format