File tree Expand file tree Collapse file tree 8 files changed +9
-4
lines changed Expand file tree Collapse file tree 8 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 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
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
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
2323input int InpFontSize = 9 ; // Font size
2424input int InpSpacing = 3 ; // Date/Time spacing factor
2525input ENUM_DISPLAY_FORMAT InpDispFormat = DisplayFormat1 ; // Display format
You can’t perform that action at this time.
0 commit comments