Friday, December 15, 2017

Ti

Ti


professional LED trend


Indicator Ti based on its own oscillator and displays trend changes.


The indicator includes customizable polynomial channels and channels of moving averages, trendlines and oscillating filter, with which you can customize scatter indicator.


You can simultaneously run multiple copies of the indicator for each timeframe. Like all of our indicators, it is built technology "Testing of the runner on the story", and error checking.


The program can work in two automatic modes:


1. Runner Mode


Activated when run on indicator chart or visual testing.


You can test / adjust the light on the stories with the included "slider" with up to 32,767 bars.


The tester (Only) of the slider mode, you can go out pressing the <Esc>.


2. Expert mode


Activated when starting with an indicator "iCustom" function.




Watch the video of "testing" in HD: https://youtu.be/2xBrWVlFaWE


The indicator is intended mainly for professional use and is very useful in situations where the desired result requires very precise criteria.




for programmers


It can be used as part of the adviser:


enum ch_type
{
   POLY = 0, / * POLY * /
   MA = 1, / * MA * /
};
enum ch_mode
{
   TR_OFF_CH_ON = 0, / * TR_OFF CH_ON * /
   TR_ON_CH_ON = 1, / * TR_ON CH_ON * /
   TR_ON_CH_OFF = 2, / * TR_ON CH_OFF * /
};
enum ch_out
{
   MIDDLE_STOP = 0, / * MIDDLE_STOP * /
   IN_STOP_1 = 1, / * IN_STOP_1 * /
   IN_STOP_2 = 2, / * IN_STOP_2 * /
   IN_STOP_3 = 3, / * IN_STOP_3 * /
   OUT_STOP_1 = 4, / * OUT_STOP_1 * /
   OUT_STOP_2 = 5, / * OUT_STOP_2 * /
   OUT_STOP_3 = 6, / * OUT_STOP_3 * /
};

The known command to retrieve output index value is for MQL4:


double Ti = iCustom (NULL, TF _, "Ti", MODE_, TYPE_, TR_, CH_, bars_, EQCH_, AC_, coef_, ex_, MTD_, st_, sm_, vf_, lam_, 0,11,0);
if (Ti == 1) buyTI_ = true;
if (Ti == 2) sellTI_ = true;
if (Ti == 3) {buyTI_ = true; sellTI_ = true;}

Where:


0 = last bar (int) - the last bar to calculate

11 = output index (double) - 1 = buy, 2 = sell, 3 = buy&&sell, 4 =! buy&&! sell
0 = buffer offset (int) - using buffer [11] should always be equal to [0] from the use of fixed output index

All buffers:


0= Upper_Trend, 1= Lower_Trend, 2= Middle_Trend, 3= Middle_Trend_1, 4= Middle_Trend_2, 5= Zig_Zag, 6= Upper_Channel, 7= Lower_Channel, 8= Middle_Channel,


9= Middle_Channel_1, 10= Middle_Channel_2, eleven= Indicator_Output




The input parameters Ti


In order from left to right: name [default value], min-max value.



  • Channel_mode [TR_OFF CH_ON] - selection of the desired combination of trend lines

  • Channel_type [POLY] - Channel type (polynomial or moving average)

  • * Trend_logic [OUT_STOP_3] - output logic trend

  • * Channel_logic [IN_STOP_1] - channel output logic

  • Channel_bars [200] 4-6000 - number of channel bars at Auto_calc = [false]

  • Equidistant [false] - enable / disable equidistant channel (true = enable / false = disable)

  • Auto_calc [true] - enable / disable the automatic calculation of the number of channel bars

  • Oscillator_coeff (xOscAVG) [4.0] 0.0-40.0 - oscillator coefficient (x mean oscillation schedule - 1x OscAVG ~ 1x spread in pips)

  • Polynomial_ex [1] 0-10 - exponent of the polynomial

  • MA_method [T3_Hull] - the method of moving average (MA method)

  • MA_step [8] 0-100 - step MA

  • MA_smooth [0] 0-100 - smoothing MA

  • MA_v_factor [0.0] 0.0-50.0 - volume ratio MA

  • MA_lambda [0.0] 0.0-100.0 - Lambda MA

  • LastBar [0] 0-6000 - last bar for the calculation (0 - current)

  • PastBars [1000] 100-6000 - the number of bars in history for payments (to the left)


* Description of the output logic Trend / Channel


middle_zone = From (Middle_Trend_1 / Middle_Channel_1) to (Middle_Trend_2 / Middle_Channel_2)


out_zone_1 = From (Upper_Trend / Upper_Channel) to (Middle_Trend_2 / Middle_Channel_2)


out_zone_2 = From (Lower_Trend / Lower_Channel) to (Middle_Trend_1 / Middle_Channel_1)



  • MIDDLE_STOP - above the line (Middle_Trend / Middle_Channel) - SELL, below line (Middle_Trend / Middle_Channel) - BUY

  • IN_STOP_1,2,3 - inside middle_zone stop trade higher middle_zone - SELL, below middle_zone - BUY

  • OUT_STOP_1,2,3 - inside out_zone_1 allowed BUY and SELL, below out_zone_1 - BUY, inside out_zone_2 allowed BUY and SELL, above out_zone_2 - SELL




Additional Information


Demo version shows the main features and ease of use of the indicator Ti.


For unlimited version Ti or to use an indicator in the Expert Advisor, you should buy or rent the full version.


Are you satisfied with our work? Share with everyone and leave your review.


If you need assistance in using our trading instruments, or if you have difficulties or questions, please contact me.


Regards!


VLabs


Ti

Video



No comments:

Post a Comment