Page 3 of 6

Re: Influx

PostPosted: Wed Aug 19, 2015 3:04 am
by Apprentice
Your request is added to the development list.

Re: Influx

PostPosted: Thu Aug 27, 2015 9:25 am
by sosinsky
I still need to use indicator with sub fractiona pips, any help?
Thanks.

Re: Influx

PostPosted: Fri Sep 11, 2015 12:53 pm
by Alexander.Gettinger
i am also wondering if "Tick Time Frame Timed MACD.lua" can be converted into mq4, please?


MQL4 version of oscillators: viewtopic.php?f=38&t=62647.

Re: Influx

PostPosted: Thu Oct 29, 2015 4:18 am
by sosinsky
I've solved the problem of sub fractional pips by myself adding these lines of code:
local precision = math.max(2, source:getPrecision());
MACD:setPrecision(precision);

Now indicator diplays also sub fractional pips.
Thanks,

sosinsky

Re: Influx

PostPosted: Mon Sep 26, 2016 2:21 pm
by MarkoFX
I have a question, hope anybody can help me
i want to overlay the indicators with a fixed scales, is that possible ?

Re: Influx

PostPosted: Tue Sep 27, 2016 12:06 pm
by Apprentice
viewtopic.php?f=17&t=63494&p=106346&hilit=overlay#p106346
As RLW Overlay.lua or as RLW Normalization.lua indicator?

Re: Influx

PostPosted: Mon Oct 10, 2016 12:39 pm
by MarkoFX
thx but I mean more like this. for exaple i have attached a picture of MT4 influx.
in MT4 you can put "2" influx in one indicator window. then you can set fix scales for both indicators.

left example: both have the same fixed scale.
right example: the blue influx have a lower fixed scale so the blue influx line get stretched without stretching the other influx.

hope i can also do this in fxcm i have searched and searched but found nothing how can i do this overlay with fixed scales ?

Re: Influx

PostPosted: Tue Oct 11, 2016 3:27 am
by Apprentice
Unfortunately something like that is not supported by TS
Will propose it to the development team.

Re: Influx

PostPosted: Mon Nov 07, 2016 7:11 am
by Apprentice
Major update, Signal & Histogram lines added all three MACD indicator.

Re: Influx

PostPosted: Sun Dec 18, 2016 3:42 pm
by tradeforlife1
Hi,

Could you please modify the Tick Time Frame Influx.lua indicator to add 3 more lines other than the current one? currently the indicator shows one line which is calculated based on Fast MA and Slow MA inputs. I need the indicator to have totally 4 lines so that the indicator shows 4 lines within the same indicator window using below 4 input sets.

Calculation:
1_Fast MA Duration in seconds
1_Slow MA Duration in seconds
2_Fast MA Duration in seconds
2_Slow MA Duration in seconds
3_Fast MA Duration in seconds
3_Slow MA Duration in seconds
4_Fast MA Duration in seconds
4_Slow MA Duration in seconds

In same way, there should be 4 set of inputs for Style/Appearance/Data Source.

Now after setting the inputs the indicator shows 4 lines in the same indicator window. This functionality is to overcome the limitation currently TS have (adding more than one indicator in the same indicator window).

Thanks in advance.