Source: https://fxcodebase.com/code/viewtopic.php?f=17&t=2525
Forum: 17 · Topic 2525 · 42 post(s)
Nikolay.Gekht · Tue Oct 26, 2010 4:42 pm
Based on http://isadukey.blogspot.hr/
The indicator is based on frequency filter and can be used as a trend-detector.
This version has the following advantages:
1) The display style is changed from lines to dots, so now the indicator does not “hide” 1-bar switches between red and green as it was in the previous version.
2) The indicator now works correctly on “alive” data, not on historical data only.

Download:
Single Stream i_Sadukey_dot.lua

MT4/MQ4 version. viewtopic.php?f=38&t=70116
bluepip · Sun Mar 06, 2011 9:42 am
Is it possible to develop a strategy based on this signal?
Thanks bluepip
Apprentice · Sun Mar 06, 2011 3:33 pm
Your request has been added in the developmental cue.
carlhans · Wed Mar 09, 2011 5:34 am
I have experience that in MT4, some indicator repaint….this Sadukey looks promising…almost too prefect…can anybody confirm, it doesnt repaint? So when the dot is plotted on the close of the candle = its definitive, no change afterwards?
Nikolay.Gekht · Thu Mar 10, 2011 9:34 am
carlhans wrote: I have experience that in MT4, some indicator repaint….this Sadukey looks promising…almost too prefect…can anybody confirm, it doesnt repaint? So when the dot is plotted on the close of the candle = its definitive, no change afterwards?
I reviewed the code and can say that it does not repaint already closed candles, only the fresh one.
compulsive · Mon Mar 14, 2011 5:56 am
At times,(most of the times it will NOT repaint the bar) BUT occasionally, It DOES repaint the bar. You will need to refresh or switch from ASK to BID and back. (It does it on my charts)
carlhans · Sat Mar 19, 2011 5:01 pm
Nikolay.Gekht wrote:
carlhans wrote: I have experience that in MT4, some indicator repaint….this Sadukey looks promising…almost too prefect…can anybody confirm, it doesnt repaint? So when the dot is plotted on the close of the candle = its definitive, no change afterwards?
I reviewed the code and can say that it does not repaint already closed candles, only the fresh one.
Thanks a lot Nikolay! Have a good one, carl
motoko123 · Tue Oct 11, 2011 3:37 pm
Hello,
nice indicator, can you please share the algorythm of this indicator so that I can understand what it is doing?
Thank you, good work,
motoko
Apprentice · Tue Oct 11, 2011 4:42 pm
The formula is quite complicated. After you download the indicator on your računalao, open the file with any text editor. The formula used by algooritam, should be clear then.
First, Define Variables Price1 and Price 2
Code: Select all
Price1[period]=((source.open[period]+source.close[period]+source.high[period]+source.low[period])/4.+source.close[period])/2.;
Price2[period]=((source.open[period]+source.close[period]+source.high[period]+source.low[period])/4.+source.open[period])/2.;
Second, Define Variables Price1 and Price 2
Code: Select all `local B1= 0.11859648Price1[period] +0.11781324Price1[period-1] +0.11548308Price1[period-2] +0.11166411Price1[period-3] +0.10645106Price1[period-4] +0.09997253Price1[period-5] +0.09238688Price1[period-6] +0.08387751Price1[period-7] +0.07464713Price1[period-8] +0.06491178Price1[period-9] +0.05489443Price1[period-10] +0.04481833Price1[period-11] +0.03490071Price1[period-12] +0.02534672Price1[period-13] +0.01634375Price1[period-14] +0.00805678Price1[period-15] +0.00062421Price1[period-16] -0.00584512Price1[period-17] -0.01127391Price1[period-18] -0.01561738Price1[period-19] -0.01886307Price1[period-20] -0.02102974Price1[period-21] -0.02216516Price1[period-22] -0.02234315Price1[period-23] -0.02165992Price1[period-24] -0.02022973Price1[period-25] -0.01818026Price1[period-26] -0.01564777Price1[period-27] -0.01277219Price1[period-28] -0.00969230Price1[period-29] -0.00654127Price1[period-30] -0.00344276Price1[period-31] -0.00050728Price1[period-32] +0.00217042Price1[period-33] +0.00451354Price1[period-34] +0.00646441Price1[period-35] +0.00798513Price1[period-36] +0.00905725Price1[period-37] +0.00968091Price1[period-38] +0.00987326Price1[period-39] +0.00966639Price1[period-40] +0.00910488Price1[period-41] +0.00824306Price1[period-42] +0.00714199Price1[period-43] +0.00586655Price1[period-44] +0.00448255Price1[period-45] +0.00305396Price1[period-46] +0.00164061Price1[period-47] +0.00029596Price1[period-48] -0.00093445Price1[period-49] -0.00201426Price1[period-50] -0.00291701Price1[period-51] -0.00362661Price1[period-52] -0.00413703Price1[period-53] -0.00445206Price1[period-54] -0.00458437Price1[period-55] -0.00455457Price1[period-56] -0.00439006Price1[period-57] -0.00412379Price1[period-58] -0.00379323Price1[period-59] -0.00343966Price1[period-60] -0.00310850Price1[period-61] -0.00285188Price1[period-62] -0.00273508Price1[period-63] -0.00274361Price1[period-64] +0.01018757Price1[period-65];
local B2= 0.11859648Price2[period] +0.11781324Price2[period-1] +0.11548308Price2[period-2] +0.11166411Price2[period-3] +0.10645106Price2[period-4] +0.09997253Price2[period-5] +0.09238688Price2[period-6] +0.08387751Price2[period-7] +0.07464713Price2[period-8] +0.06491178Price2[period-9] +0.05489443Price2[period-10] +0.04481833Price2[period-11] +0.03490071Price2[period-12] +0.02534672Price2[period-13] +0.01634375Price2[period-14] +0.00805678Price2[period-15] +0.00062421Price2[period-16] -0.00584512Price2[period-17] -0.01127391Price2[period-18] -0.01561738Price2[period-19] -0.01886307Price2[period-20] -0.02102974Price2[period-21] -0.02216516Price2[period-22] -0.02234315Price2[period-23] -0.02165992Price2[period-24] -0.02022973Price2[period-25] -0.01818026Price2[period-26] -0.01564777Price2[period-27] -0.01277219Price2[period-28] -0.00969230Price2[period-29] -0.00654127Price2[period-30] -0.00344276Price2[period-31] -0.00050728Price2[period-32] +0.00217042Price2[period-33] +0.00451354Price2[period-34] +0.00646441Price2[period-35] +0.00798513Price2[period-36] +0.00905725Price2[period-37] +0.00968091Price2[period-38] +0.00987326Price2[period-39] +0.00966639Price2[period-40] +0.00910488Price2[period-41] +0.00824306Price2[period-42] +0.00714199Price2[period-43] +0.00586655Price2[period-44] +0.00448255Price2[period-45] +0.00305396Price2[period-46] +0.00164061Price2[period-47] +0.00029596Price2[period-48] -0.00093445Price2[period-49] -0.00201426Price2[period-50] -0.00291701Price2[period-51] -0.00362661Price2[period-52] -0.00413703Price2[period-53] -0.00445206Price2[period-54] -0.00458437Price2[period-55] -0.00455457Price2[period-56] -0.00439006Price2[period-57] -0.00412379Price2[period-58] -0.00379323Price2[period-59] -0.00343966Price2[period-60] -0.00310850Price2[period-61] -0.00285188Price2[period-62] -0.00273508Price2[period-63] -0.00274361Price2[period-64] +0.01018757Price2[period-65];` The final results depends on the comparison of B1 and B2
Code: Select all
if B1 > B2 then
bufferUp[period] = B1;
else
bufferDn[period] = B2;
end
biggiesmalls · Wed Oct 12, 2011 6:54 am
Is there anyway we can get a Multiple Time Frame version of this indicator? For example, if I wanted to use the 1-hour chart for entry, I would want this indicator looking at a 4-hour chart or the daily chart but plotting the points on the 1-hour chart. That way I don’t have to waste time jumping back and forth between time frames.
Apprentice · Wed Oct 12, 2011 5:10 pm
Your request is added to the developmental cue.
sunshine · Thu Oct 13, 2011 3:10 am
biggiesmalls wrote: Is there anyway we can get a Multiple Time Frame version of this indicator? For example, if I wanted to use the 1-hour chart for entry, I would want this indicator looking at a 4-hour chart or the daily chart but plotting the points on the 1-hour chart. That way I don’t have to waste time jumping back and forth between time frames.
It is possible in the new version of Marketscope which comes to productions pretty soon. For now the beta version is available here: viewtopic.php?f=30&t=6490

You can choose the time frame in the Indicator Properties dialog box -> Data Source tab:

biggiesmalls · Thu Oct 13, 2011 5:21 am
Awesome! Thank you very much.
faithrider · Wed Nov 30, 2011 5:07 am
This is a very helpful indicator. Would it be possible to have the i_Sadukey colors overlay the price bars. Green for an uptrend and red for a downtrend. Thank you for your awesome work.
Apprentice · Thu Dec 01, 2011 9:33 am
Your request is added to the developmental cue.
Apprentice · Wed Mar 14, 2012 3:11 pm
Overlay Added to Topmost post.
briansummy · Fri Mar 23, 2012 11:20 pm
This seems to be similar to the nonlagdot. I notice firsthand on a minute chart repainting for NLD. Is this similar to the calculation and are we certain there is no repainting? I will have to demo this indicator.
Apprentice · Sun Mar 25, 2012 4:20 am
Last Candles affects the final value with less than 12%. The closing price (close) with about 4 percent.
briansummy · Tue Mar 27, 2012 6:54 pm
Apprentice,
If allowed, are you able to translate this strategy into LUA using the Isadukey?
http://www.forexfactory.com/showthread.php?t=215512
If possible with all the money management and bells and whistles? LOL
You rock!
Apprentice · Wed Mar 28, 2012 6:35 am
Unfortunately not. The strategy is encoded. Can you give me a description. What are the indicators used, which are the entry exit conditions.
briansummy · Wed Mar 28, 2012 6:40 pm
Long signal: Color UP rectangle of i_Sadukey indicator. Short signal: Color DN rectangle of i_Sadukey indicator. Exits: Opposite colour of i_Sadukey indicator.
StopLossAtrMultiplier: If greater than zero, the stop loss is ATR based and the ATR is multiplied by this number.
TakeProfitAtrMultiplier1: If greater than zero, the first take profit is ATR based. ATR is multiplied by this number.
BreakEvenAtrMultiplier: If greater than zero the breakeven is ATR based and the ATR is multiplied by this number.
LockAtrMultiplier: If greater than zero, the lock level is ATR based and the ATR is multiplied by this number.
TrailingStopAtrMultiplier: If greater than zero, the trailing stop is ATR based and the ATR is multiplied by this number.
Trading hours restrictions, and all those types of options.
They have lot management which is pretty cool. It adjusts with the % of margin selected.
I think what could tremendously improve this strategy is introduction of the Tick SAR agreement condition and not trading against it to help with false signals. Thoughts?
Apprentice · Sat Mar 31, 2012 3:44 am
Your request is added to the development list.
Hailkayy · Mon Sep 10, 2012 6:37 pm
Hi,
i wonder if you could make basic strategy of sadukey. Maybe in addings you can let us have 2 or 3 limits. Like Limit1 x% at xpips. Same for Limit2 and Limit3.
Apprentice · Tue Sep 11, 2012 3:52 am
Your request is added to the development list.
Coondawg71 · Thu Sep 13, 2012 7:50 pm
Can I please request a MTF MCP Sadukey heatmap.
Thanks!
sjc
Apprentice · Fri Sep 14, 2012 3:39 am
Your request is added to the development list.
Apprentice · Fri Sep 14, 2012 4:55 am
Requested can be found here. viewtopic.php?f=17&t=23404
Fafountrader · Wed Sep 14, 2016 5:37 am
hi,
I can not find the strategy of this indicator. Basic strategy (opposite colour of i_Sadukey indicator)
Thank of the link.
Apprentice · Thu Sep 15, 2016 3:43 am
Strategy is available here. viewtopic.php?f=31&t=63870
Fafountrader · Thu Sep 15, 2016 12:13 pm
thanks, apprendice
Apprentice · Tue Sep 18, 2018 6:52 am
The indicator was revised and updated.
hedging · Sun Apr 12, 2020 7:44 am
Hi Apprentice,
Does sadukey repaints?
Thanks,
Apprentice · Sun Apr 12, 2020 9:35 am
i_Sadukey does not repaint.
hedging · Wed May 06, 2020 2:56 am
Thanks Apprentice
lowcoloured · Thu May 14, 2020 9:34 am
Can we have single stream sadukey dot please? Just like single stream sar on fxcodebase? Much needed. Want to apply indicators on sadukey. That’s why single stream.
Thanks
Apprentice · Fri May 15, 2020 7:20 am
Your request is added to the development list. Development reference 1297.
Apprentice · Thu May 21, 2020 7:56 am
Single Stream i_Sadukey_dot.lua added.
g201702890 · Sat May 23, 2020 7:50 pm
Dears,
is there a copy of this file for MT4?
Regards
Apprentice · Mon May 25, 2020 5:33 am
Your request is added to the development list. Development reference 1341.
7200100470 · Thu May 28, 2020 5:35 pm
bluepip wrote: Is it possible to develop a strategy based on this signal?
Thanks bluepip
Is there a strategy using this indicator, as a .lua one?
Thanks
Apprentice · Fri May 29, 2020 4:23 am
viewtopic.php?f=31&t=63870 viewtopic.php?f=31&t=69816 Try these versions.
Apprentice · Thu Jul 02, 2020 5:29 am
Task 1341 Originally it was MT4 viewtopic.php?f=38&t=70116