Skip to content

Commit acba19e

Browse files
committed
Updated for RangeBars ver. 3.02
1 parent 0d51499 commit acba19e

File tree

8 files changed

+9
-4
lines changed

8 files changed

+9
-4
lines changed
1.04 KB
Binary file not shown.

Include/AZ-INVEST/SDK/RangeBarCustomChartSettings.mqh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#ifdef SHOW_INDICATOR_INPUTS
1313
#ifdef MQL5_MARKET_DEMO // hardcoded values
1414

15-
int barSizeInTicks = 180; // Range bar size (in points)
15+
int barSizeInTicks = 180; // Range bar size (in ticks)
1616
ENUM_BOOL atrEnabled = false; // Enable ATR based bar size calculation
1717
ENUM_TIMEFRAMES atrTimeFrame = PERIOD_D1; // Use ATR period
1818
int atrPeriod = 14; // ATR period
@@ -23,7 +23,7 @@
2323
#else // user defined settings
2424

2525

26-
input int barSizeInTicks = 100; // Range bar size (in points)
26+
input int barSizeInTicks = 20; // Range bar size (in ticks)
2727
input ENUM_BOOL atrEnabled = false; // Enable ATR based bar size calculation
2828
ENUM_TIMEFRAMES atrTimeFrame = PERIOD_D1; // Use ATR period
2929
input int atrPeriod = 14; // ATR period
@@ -34,7 +34,7 @@
3434

3535
#endif
3636
#else // don't SHOW_INDICATOR_INPUTS
37-
int barSizeInTicks = 180; // Range bar size (in points)
37+
int barSizeInTicks = 180; // Range bar size (in ticks)
3838
ENUM_BOOL atrEnabled = false; // Enable ATR based bar size calculation
3939
ENUM_TIMEFRAMES atrTimeFrame = PERIOD_D1; // Use ATR period
4040
int atrPeriod = 14; // ATR period

Indicators/RangeBars/RangeBars_ATR.mq5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#property copyright "2009-2017, MetaQuotes Software Corp."
77
#property link "http://www.mql5.com"
88
#property description "Average True Range"
9+
#property description "Adapted for use with TickChart by Artur Zas."
910
//--- indicator settings
1011
#property indicator_separate_window
1112
#property indicator_buffers 2

Indicators/RangeBars/RangeBars_CCI.mq5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#property copyright "2009, MetaQuotes Software Corp."
99
#property link "http://www.mql5.com"
1010
#property description "Commodity Channel Index"
11+
#property description "Adapted for use with TickChart by Artur Zas."
1112
#include <MovingAverages.mqh>
1213
//---
1314
#property indicator_separate_window

Indicators/RangeBars/RangeBars_Ichimoku.mq5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#property copyright "2009-2017, MetaQuotes Software Corp."
77
#property link "http://www.mql5.com"
88
#property description "Ichimoku Kinko Hyo"
9+
#property description "Adapted for use with TickChart by Artur Zas."
910
//--- indicator settings
1011
#property indicator_chart_window
1112
#property indicator_buffers 5

Indicators/RangeBars/RangeBars_ParabolicSAR.mq5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
//+------------------------------------------------------------------+
66
#property copyright "2009-2017, MetaQuotes Software Corp."
77
#property link "http://www.mql5.com"
8+
#property description "Adapted for use with TickChart by Artur Zas."
89
//--- indicator settings
910
#property indicator_chart_window
1011
#property indicator_buffers 3

Indicators/RangeBars/RangeBars_Stochastic.mq5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
//+------------------------------------------------------------------+
66
#property copyright "2009, MetaQuotes Software Corp."
77
#property link "http://www.mql5.com"
8+
#property description "Adapted for use with TickChart by Artur Zas."
89
//--- indicator settings
910
#property indicator_separate_window
1011
#property indicator_buffers 4

Indicators/RangeBars/RangeBars_TimeLine.mq5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ enum ENUM_DISPLAY_FORMAT
1919
DisplayFormat2, // 25.01 10:55
2020
};
2121

22-
input color InpTextColor = clrWhiteSmoke; // Font color
22+
input color InpTextColor = clrBlack; // Font color
2323
input int InpFontSize = 9; // Font size
2424
input int InpSpacing = 3; // Date/Time spacing factor
2525
input ENUM_DISPLAY_FORMAT InpDispFormat = DisplayFormat1; // Display format

0 commit comments

Comments
 (0)