stevemoore Posted November 27, 2015 Report Share Posted November 27, 2015 (edited) G'day all. I have just checked the very promising vendor Kongzana's website, and found out that they have released new strats and files.They are the STSBuy and STSSell automated strats and the indicator anaCurrentDayVWAP42.zip.I had requested one of our topnotch educators to help me for education of the files and he very graciously accepted, even though he was busy.Not only is he very skillful and talented but also very kind and humble as he told me not to mention his name.Thank you my man (you know who you are!) Some info on the indicators.You all already know and understand the popular VWAP. This is what Kongzana have to say about the STSBuy/Sell: StS is Signal to Signal and somewhat similar to CTT. This strategy has the same entry conditions as CTT however the stop loss is removed and the exit is triggered at the cross of the signal for both Buy and Sell. Kongzana New.zip (21.61KB) https://www.sendspace.com/file/y73mbx (just extract and import into NT7 like you normally would) Many thanks go to the educator! :) Edited November 27, 2015 by stevemoore ⭐ laser1000it, Watson Leung, tryitagainmf and 28 others 31 Quote Link to comment Share on other sites More sharing options...
energetic Posted November 27, 2015 Report Share Posted November 27, 2015 any info on how to use it? Quote Link to comment Share on other sites More sharing options...
SINGtrader Posted November 27, 2015 Report Share Posted November 27, 2015 (edited) any info on how to use it? energetic please check out this thread for more info on the Kongzana indicators and system which have been given the thumbs up by even Big Mike forum readers.I didn't even know they had new strategies until I saw this thread.Thanks stevie and educator! http://indo-investasi.com/showthread.php/26577-New-indi-need-education-being-used-pretty-sucessfully-in-the-trading-room Edited November 27, 2015 by SINGtrader stevemoore, energetic and ⭐ ESVepara 3 Quote Link to comment Share on other sites More sharing options...
admis Posted November 27, 2015 Report Share Posted November 27, 2015 (edited) Again, it's impressive! How much is this masterpiece worth? (Already have got it: $299/month [$3,588/year]) [spoiler=STBuy] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class STSBuy : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { EnterLong(DefaultQuantity, ""); } if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { ExitLong("", ""); } } } } [spoiler=STSell] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class STSSell : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { EnterShort(DefaultQuantity, ""); } if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { ExitShort("", ""); } } } } The previous scribble you can see here: http://indo-investasi.com/showthread.php/26607-Can-someone-please-convert-these-small-NT7-strategies-to-source?p=390473&viewfull=1#post390473 Reading admiration of something like that, I'm not surprised anymore, that there is still so much sold of the snake oil products. X_X...I'm not sure - whether should I laugh or cry? Edited November 27, 2015 by admis newbie0101, k33, ⭐ trader1968 and 21 others 24 Quote Link to comment Share on other sites More sharing options...
Swordfih Posted November 27, 2015 Report Share Posted November 27, 2015 Don't know if this was shared before but FWIW more info about how to use this "marvel". This document it's provided when joining his trading room. Hope it helps, https://[email protected]/file/1185tz Traderbeauty, wizard101, forexonly and 14 others 17 Quote Link to comment Share on other sites More sharing options...
longboat Posted November 27, 2015 Report Share Posted November 27, 2015 (edited) ------------ Edited November 28, 2015 by longboat Quote Link to comment Share on other sites More sharing options...
⭐ Meow Posted November 28, 2015 Report Share Posted November 28, 2015 The idea behind it- is not so bad. But you cant trade that strategy straight forward, you need additional information to make the decisions. That what is KZ is doing in his trading room. Otherwise its gonna be alot of scratches in and out trades. I'm still surprised he can make profits in FDAX. Crazy mother ****ing instrument.;) Again, it's impressive! How much is this masterpiece worth? (Already have got it: $299/month [$3,588/year]) [spoiler=STBuy] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class STSBuy : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { EnterLong(DefaultQuantity, ""); } if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { ExitLong("", ""); } } } } [spoiler=STSell] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class STSSell : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { EnterShort(DefaultQuantity, ""); } if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 20), 1)) { ExitShort("", ""); } } } } The previous scribble you can see here: http://indo-investasi.com/showthread.php/26607-Can-someone-please-convert-these-small-NT7-strategies-to-source?p=390473&viewfull=1#post390473 Reading admiration of something like that, I'm not surprised anymore, that there is still so much sold of the snake oil products. X_X...I'm not sure - whether should I laugh or cry? ⭐ ESVepara and stevemoore 2 Quote Link to comment Share on other sites More sharing options...
lululee Posted November 28, 2015 Report Share Posted November 28, 2015 The idea behind it- is not so bad. But you cant trade that strategy straight forward, you need additional information to make the decisions. That what is KZ is doing in his trading room. Otherwise its gonna be alot of scratches in and out trades. I'm still surprised he can make profits in FDAX. Crazy mother ****ing instrument.;) Agreed with Meow....that KZ idea not enough to trade....lot more needed and he always tell you after the fact. He never say ok we are going to place the order here. Quote Link to comment Share on other sites More sharing options...
yamantaka Posted December 2, 2015 Report Share Posted December 2, 2015 Agreed with Meow....that KZ idea not enough to trade....lot more needed and he always tell you after the fact. He never say ok we are going to place the order here. If KZ doesn't trade live off a chart or DOM so everyone can clearly see his entries and exits, then he is just another time waster. Trade rooms should be all about TRANSPARENCY; unfortunately, so few are. Quote Link to comment Share on other sites More sharing options...
Ganymed Posted December 2, 2015 Report Share Posted December 2, 2015 If KZ doesn't trade live off a chart or DOM so everyone can clearly see his entries and exits, then he is just another time waster. Trade rooms should be all about TRANSPARENCY; unfortunately, so few are. he is not a CTA not allowed to announce live trades in the room Quote Link to comment Share on other sites More sharing options...
tryitagainmf Posted December 2, 2015 Report Share Posted December 2, 2015 Anyone have the new "DSR" strategy already educated or ready to be educated? Cheers! Mick longboat, stevemoore and energetic 3 Quote Link to comment Share on other sites More sharing options...
stevemoore Posted December 3, 2015 Author Report Share Posted December 3, 2015 Anyone have the new "DSR" strategy already educated or ready to be educated? Cheers! Mick Valdamar has decided to give the DSR strats and training free to his paying subscribers as a Christmas gift. Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted December 3, 2015 Report Share Posted December 3, 2015 Can someone share the chart template shown in the room? Thanks longboat 1 Quote Link to comment Share on other sites More sharing options...
lululee Posted December 3, 2015 Report Share Posted December 3, 2015 Can someone share the chart template shown in the room? Thanks It is just 250 Volume thats all and add all strategies to all of your charts. Here are his videos. https://mega.nz/#!rUESFCza!pq9BFy19egYPjqR4rlUBrpGeAOkL_S1Uvq96IM4tgDU https://mega.nz/#!6I0BxDpZ!X47Bon5klYY_a1_lYVYF1--8QRSerQy3keoaI8iYSHQ wizard101, ⭐ bomdila, tradernate and 7 others 10 Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted December 3, 2015 Report Share Posted December 3, 2015 It is just 250 Volume thats all and add all strategies to all of your charts. Here are his videos. https://mega.nz/#!rUESFCza!pq9BFy19egYPjqR4rlUBrpGeAOkL_S1Uvq96IM4tgDU https://mega.nz/#!6I0BxDpZ!X47Bon5klYY_a1_lYVYF1--8QRSerQy3keoaI8iYSHQ Thanks lululee. Is it trading room recorded videos or any special ones provided by Kongz@n@ Quote Link to comment Share on other sites More sharing options...
Swordfih Posted December 3, 2015 Report Share Posted December 3, 2015 (edited) Another option could be calling each strategy individually while keeping all other strategies off, otherwise you might end up with a whole bunch of hard to follow misfired trades. To do this you only need to look for any upcoming signal (cci cross) prior to enabling the strategy on any given market. At least, that have been my experience with this method. This is done by using the Strategies option in Control Panel. http://puu.sh/lIiya/0d960c5cef.png I believe this is how he was actually trading (sym or otherwise) while I visited his trading room, don't know if anything has changed with the new DSR strategy. Still trying to figuring out his "secret sauce" for his daily algo levels... getting close though. Edited December 4, 2015 by Swordfi$h Correction longboat, wizard101, stevemoore and 6 others 9 Quote Link to comment Share on other sites More sharing options...
kenny123 Posted December 5, 2015 Report Share Posted December 5, 2015 thanks swordfish... Quote Link to comment Share on other sites More sharing options...
longboat Posted December 5, 2015 Report Share Posted December 5, 2015 Another option could be calling each strategy individually while keeping all other strategies off, otherwise you might end up with a whole bunch of hard to follow misfired trades. To do this you only need to look for any upcoming signal (cci cross) prior to enabling the strategy on any given market. At least, that have been my experience with this method. This is done by using the Strategies option in Control Panel. http://puu.sh/lIiya/0d960c5cef.png I believe this is how he was actually trading (sym or otherwise) while I visited his trading room, don't know if anything has changed with the new DSR strategy. Still trying to figuring out his "secret sauce" for his daily algo levels... getting close though. Thanks yes let us know if you figure out the Algo target levels! Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted December 8, 2015 Report Share Posted December 8, 2015 (edited) Anyone have the new "DSR" strategy already educated or ready to be educated? Cheers! Mick Here it's ready to be educated DSR.rar (21.00KB) https://www.sendspace.com/file/lcbioy ttps://mega.nz/#!5cRwCbCR!RCqsrD7UU4AIPkfJ2fGRnxYcq8KNJ_oGJBHJAPSkPt0 DSRBuy - DAX Stop Runner Strategy developed for DAX traders (also works on other high volatility instruments) This strategy aims to benefit from profit taking as well as excellent tool for breakouts and breakdowns to quickly benefit from stop loss orders getting triggered) DSRSell - DAX Stop Runner Strategy developed for DAX traders (also works on other high volatility instruments) This strategy aims to benefit from profit taking as well as excellent tool for breakouts and breakdowns to quickly benefit from stop loss orders getting triggered) Edited December 8, 2015 by bomdila spymez, tryitagainmf, stevemoore and 5 others 8 Quote Link to comment Share on other sites More sharing options...
admis Posted December 8, 2015 Report Share Posted December 8, 2015 Maybe we can make a development contest of similar strategies...? [spoiler=DSRBuy] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class DSRBuy : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { EnterLong(DefaultQuantity, ""); } if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { ExitLong("", ""); } } } } [spoiler=DSRSell] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class DSRSell : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { EnterShort(DefaultQuantity, ""); } if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { ExitShort("", ""); } } } } ⭐ flipper26, ⭐ ESVepara, Swordfih and 6 others 9 Quote Link to comment Share on other sites More sharing options...
⭐ bomdila Posted December 8, 2015 Report Share Posted December 8, 2015 Maybe we can make a development contest of similar strategies...? [spoiler=DSRBuy] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class DSRBuy : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { EnterLong(DefaultQuantity, ""); } if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { ExitLong("", ""); } } } } [spoiler=DSRSell] using System; using System.ComponentModel; using NinjaTrader.Data; namespace NinjaTrader.Strategy { [Description("Enter the description of your strategy here")] public class DSRSell : Strategy { protected override void Initialize() { CalculateOnBarClose=true; } protected override void OnBarUpdate() { if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { EnterShort(DefaultQuantity, ""); } if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 7), 1)) { ExitShort("", ""); } } } } Please share educated DSR Ganymed and tryitagainmf 2 Quote Link to comment Share on other sites More sharing options...
sgueta Posted December 8, 2015 Report Share Posted December 8, 2015 Please share educated DSR https://www.sendspace.com/filegroup/3vUG4leVVYIRmfEVGHiErg ⭐ bomdila, Top1, stevemoore and 13 others 16 Quote Link to comment Share on other sites More sharing options...
sinox Posted December 8, 2015 Report Share Posted December 8, 2015 Hi all not ever used a strategy, please can you explain to me how to apply it? I installed both>opend a chart>dx click> but strategy is gray not selectable. Any suggest? Thanks in advanced Quote Link to comment Share on other sites More sharing options...
tryitagainmf Posted December 8, 2015 Report Share Posted December 8, 2015 (edited) Hi all not ever used a strategy, please can you explain to me how to apply it? I installed both>opend a chart>dx click> but strategy is gray not selectable. Any suggest? Thanks in advanced @sinox...to get to the strategies that you have downloaded, you click on the ChartTrader icon to disable that function and the Strategies icon will activate. Proceed (with caution) from there on to your desired strategy... Cheers! Mick Edited December 8, 2015 by tryitagainmf typo trad128 1 Quote Link to comment Share on other sites More sharing options...
sinox Posted December 8, 2015 Report Share Posted December 8, 2015 i did it infac it's ok now. Just to understand the logic. Thanks tryitagainmf 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.