⭐ fryguy1 Posted June 18 Report Posted June 18 Trying to see what the interest might be on this. No HWID, fully unlocked. Quote
roddizon1978 Posted June 19 Report Posted June 19 (edited) If you got Trading View you could use Nexgen T3 , it is the same as the MACD BB. These indicators combine the Moving Average Convergence Divergence (MACD) with Bollinger Bands to provide traders with signals based on trend strength and potential price movements. If I pay $5 , I would not mind paying. Remember T3 is a long time script already stolen by the owner of Nexgen from the original creator Mladen's concept. Edited June 19 by roddizon1978 Quote
Ninja_On_The_Roof Posted June 19 Report Posted June 19 (edited) Was just darn bored. Got me a cold beer and some beef jerkies.🤩 My modified Nexgen T3 "system".🤣 Only...better though!😃 NexGen is all about using Fib, to my humble knowledge. Therefore, I just took Fib indicator from ARC-Neurostreet and applied its concept. As far as I still remember, way back then, when I was still using ARC, blue Fib is to buy and red maroon Fib is to sell. When price hits these Fib lines. You just go long and short according to the color indicated. Obviously, I added a few indicators of my own to better spot the entries, whether or not to enter or to skip. https://limewire.com/d/9ccrE#mdRCIYqCVh Edited June 19 by Ninja_On_The_Roof ⭐ goldeneagle1 1 Quote
kadi Posted June 19 Report Posted June 19 2 hours ago, Ninja_On_The_Roof said: Was just darn bored. Got me a cold beer and some beef jerkies.🤩 My modified Nexgen T3 "system".🤣 Only...better though!😃 NexGen is all about using Fib, to my humble knowledge. Therefore, I just took Fib indicator from ARC-Neurostreet and applied its concept. As far as I still remember, way back then, when I was still using ARC, blue Fib is to buy and red maroon Fib is to sell. When price hits these Fib lines. You just go long and short according to the color indicated. Obviously, I added a few indicators of my own to better spot the entries, whether or not to enter or to skip. https://limewire.com/d/9ccrE#mdRCIYqCVh @Ninja_On_The_Roof Can you please post the indicator files you have in the screenshot? Thanks Harrys 1 Quote
AllIn Posted June 19 Report Posted June 19 6 hours ago, Ninja_On_The_Roof said: Was just darn bored. Got me a cold beer and some beef jerkies.🤩 My modified Nexgen T3 "system".🤣 Only...better though!😃 NexGen is all about using Fib, to my humble knowledge. Therefore, I just took Fib indicator from ARC-Neurostreet and applied its concept. As far as I still remember, way back then, when I was still using ARC, blue Fib is to buy and red maroon Fib is to sell. When price hits these Fib lines. You just go long and short according to the color indicated. Obviously, I added a few indicators of my own to better spot the entries, whether or not to enter or to skip. https://limewire.com/d/9ccrE#mdRCIYqCVh This is one you made? Can’t wait to try it out if so. Quote
roddizon1978 Posted June 19 Report Posted June 19 (edited) here is the MACD BB use by T3 MACD BB lines NT8 - NinjaTrader Ecosystem Here is the Tilson T3 Moving average in TOS Thinkscript, there is many copy of it , but this is the best, need to be converted to NT8. T3 because T stand for Tilson. It is used to smooth the entry of the trade ---------------------------------------------------------------------------------------------------------------------------------------- # filename: _Tillson_T3_Moving_Average_ # source: https://futures.io/thinkorswim/34287-tilson-t3-moving-average.html#post460861 # created by: rmejia # last update: 12/17/2014 #hint:<b>T3 Adaptive Smoothing Indicator</b>\nThis study was adopted from the Technical Analysis of Stocks and Commodities article "Smoothing Techniques for More Accurate Signals" by Tim Tillson, Jan 1998 (V16:1 pp33-37) #hint: indicator: Defines the level of filtering to occur, default is 3 #hint: volumeFactor: Adjusts the amplitude of the feedback added back into the base filter declare upper; input indicator = { T1, T2, default T3, T4, T5, T6 }; input price = close; input period = 15; input volumeFactor = 0.70; input displace = 0; input sign = { default plus, minus }; input Label = No; input paintbars = No; script _gd { input _price = close; input _period = 10; input _v = 0.70; input _sign = { default plus, minus }; def _ema = ExpAverage( _price, _period ); plot _gd = ( _ema * ( 1 + _v ) ) - ( ExpAverage( _ema, _period ) * _v ); } def _t1 = _gd( price[-displace], period, volumeFactor, sign ); def _t2 = _gd( _t1, period, volumeFactor, sign ); def _t3 = _gd( _t2, period, volumeFactor, sign ); def _t4 = _gd( _t3, period, volumeFactor, sign ); def _t5 = _gd( _t4, period, volumeFactor, sign ); def _t6 = _gd( _t5, period, volumeFactor, sign ); plot T3; switch( indicator ) { case T1: T3 = _t1; case T2: T3 = _t2; case T3: T3 = _t3; case T4: T3 = _t4; case T5: T3 = _t5; case T6: T3 = _t6; } T3.AssignValueColor(if T3 > T3[1] then Color.GREEN else Color.RED); T3.HideBubble(); AddLabel(Label, if T3 > T3[1] then " A " else " A ", if T3 > T3[1] then Color.GREEN else Color.RED); assignPriceColor(if paintbars and T3 < T3[1] then color.DARK_RED else if paintbars and T3 > T3[1] then color.DARK_GREEN else color.CURRENT); Edited June 19 by roddizon1978 ⭐ goldeneagle1 1 Quote
Ninja_On_The_Roof Posted June 20 Report Posted June 20 11 hours ago, kadi said: @Ninja_On_The_Roof Can you please post the indicator files you have in the screenshot? Thanks Hi, Ahhh...no! I was high and bored in the middle of the night. You wouldn't wanna use that for live trading. Trust me! Everything looks great on your charts once it is all said and done. Same goes for the indicators. They certainly look spot on and accurate right after the fact, when the moves have already happened. Happy Trading! Quote
kadi Posted June 20 Report Posted June 20 47 minutes ago, Ninja_On_The_Roof said: Hi, Ahhh...no! I was high and bored in the middle of the night. You wouldn't wanna use that for live trading. Trust me! Everything looks great on your charts once it is all said and done. Same goes for the indicators. They certainly look spot on and accurate right after the fact, when the moves have already happened. Happy Trading! 🤣😂😅 I feel you man lol Quote
Ninja_On_The_Roof Posted June 20 Report Posted June 20 16 hours ago, roddizon1978 said: here is the MACD BB use by T3 MACD BB lines NT8 - NinjaTrader Ecosystem Here is the Tilson T3 Moving average in TOS Thinkscript, there is many copy of it , but this is the best, need to be converted to NT8. T3 because T stand for Tilson. It is used to smooth the entry of the trade ---------------------------------------------------------------------------------------------------------------------------------------- # filename: _Tillson_T3_Moving_Average_ # source: https://futures.io/thinkorswim/34287-tilson-t3-moving-average.html#post460861 # created by: rmejia # last update: 12/17/2014 #hint:<b>T3 Adaptive Smoothing Indicator</b>\nThis study was adopted from the Technical Analysis of Stocks and Commodities article "Smoothing Techniques for More Accurate Signals" by Tim Tillson, Jan 1998 (V16:1 pp33-37) #hint: indicator: Defines the level of filtering to occur, default is 3 #hint: volumeFactor: Adjusts the amplitude of the feedback added back into the base filter declare upper; input indicator = { T1, T2, default T3, T4, T5, T6 }; input price = close; input period = 15; input volumeFactor = 0.70; input displace = 0; input sign = { default plus, minus }; input Label = No; input paintbars = No; script _gd { input _price = close; input _period = 10; input _v = 0.70; input _sign = { default plus, minus }; def _ema = ExpAverage( _price, _period ); plot _gd = ( _ema * ( 1 + _v ) ) - ( ExpAverage( _ema, _period ) * _v ); } def _t1 = _gd( price[-displace], period, volumeFactor, sign ); def _t2 = _gd( _t1, period, volumeFactor, sign ); def _t3 = _gd( _t2, period, volumeFactor, sign ); def _t4 = _gd( _t3, period, volumeFactor, sign ); def _t5 = _gd( _t4, period, volumeFactor, sign ); def _t6 = _gd( _t5, period, volumeFactor, sign ); plot T3; switch( indicator ) { case T1: T3 = _t1; case T2: T3 = _t2; case T3: T3 = _t3; case T4: T3 = _t4; case T5: T3 = _t5; case T6: T3 = _t6; } T3.AssignValueColor(if T3 > T3[1] then Color.GREEN else Color.RED); T3.HideBubble(); AddLabel(Label, if T3 > T3[1] then " A " else " A ", if T3 > T3[1] then Color.GREEN else Color.RED); assignPriceColor(if paintbars and T3 < T3[1] then color.DARK_RED else if paintbars and T3 > T3[1] then color.DARK_GREEN else color.CURRENT); Hello @roddizon1978, I am a tad confused. Were you talking about the "trigger lines" as T3? Nexgen has nothing to do with MACD, I dont think. But yes, I could be also wrong. As far as I know and still remember, this Nexgen thing came into the picture when I first started out trading and it was all Fibs. I dont recall seeing any videos in which they spoke of using MACD. On top of it, as Beauty has mentioned in her previous post and as I recall, this Nexgen thing has never been successfully educated since then. And that was like what? 100 years ago, when I was young and beautifooool back then🤪 And, if and if at all, it is in fact a MACD based system, sh....mm, I shoot me dead, I wouldn't even spend 1 cent on it, let alone 16K plus. Regardless, there are plenty of MACD BBs out there, you are definitely correct there. I do like the one from TDU though. Very detailed and also, provides you with entry signals. As they call it, not a MACD BBs per se, but a Devils Edge, a "super charged MACD", a "river" you are trying g to cross over. https://tradedevils-indicators.com/products/devils-edge-indicator roddizon1978 and ⭐ goldeneagle1 1 1 Quote
roddizon1978 Posted June 20 Report Posted June 20 7 hours ago, Ninja_On_The_Roof said: Hello @roddizon1978, I am a tad confused. Were you talking about the "trigger lines" as T3? Nexgen has nothing to do with MACD, I dont think. But yes, I could be also wrong. As far as I know and still remember, this Nexgen thing came into the picture when I first started out trading and it was all Fibs. I dont recall seeing any videos in which they spoke of using MACD. On top of it, as Beauty has mentioned in her previous post and as I recall, this Nexgen thing has never been successfully educated since then. And that was like what? 100 years ago, when I was young and beautifooool back then🤪 And, if and if at all, it is in fact a MACD based system, sh....mm, I shoot me dead, I wouldn't even spend 1 cent on it, let alone 16K plus. Regardless, there are plenty of MACD BBs out there, you are definitely correct there. I do like the one from TDU though. Very detailed and also, provides you with entry signals. As they call it, not a MACD BBs per se, but a Devils Edge, a "super charged MACD", a "river" you are trying g to cross over. https://tradedevils-indicators.com/products/devils-edge-indicator Yes , Ninja Trader 8 have a T3 indicator but not as good as Think or swim has. As I have read John Novak incoporate all Tilson indicators on his system, That's why it is called T3, T stand for Tilson, that's why a lot of indicator creators, debunk him, because they said, he is just a copy cat. MACDBB was also another creation of Tilson. As For Fibs,I would said it is a part of a Elliot wave trade, but it doesn't work all the time, We have posted Ninjacator Elliot wave files in here. How do John knows when his Fibs will work. That is the question I want to know, but since we don't have his system, we will not know, In 2021, najib, posted in selling a multi machine Nexgen T3 for sale for $160. I will ask him if he have a new version. publis a N Tilson Ninja_On_The_Roof 1 Quote
Traderbeauty Posted June 21 Report Posted June 21 i have a legit nexgen license from years ago and i can tell you that its not worth 160$. i would not send nadjib money unless he can prove that he has the real thing. as i said before- no one ever succeeded to edu nexgen. just be careful. Quote
⭐ sean2003 Posted June 21 Report Posted June 21 (edited) I also bought Nexgen 20 years ago. Their multi-timeframe Fibs are really good. Their software pings the license server multiple times. I also don't know that anyone was able to edu nexgen. Thanks Edited June 21 by sean2003 Quote
Ninja_On_The_Roof Posted June 21 Report Posted June 21 3 hours ago, sean2003 said: I also bought Nexgen 20 years ago. Their multi-timeframe Fibs are really good. Their software pings the license server multiple times. I also don't know that anyone was able to edu nexgen. Thanks Hi, Within the ARC-Neurostreet indicator package, there are 2 indicators for Fib. One is a regular and the other right under it, is for the MTF (multi time frame) one. You can certainly give them a try. When using time based bars, Fib lines are plotted at more places on your chart compared to when being used with Renko. Also, depending on your settings, whether for "small", "smallest", "large"...etc... roddizon1978 1 Quote
⭐ samsammy Posted June 22 Report Posted June 22 @Ninja_On_The_Roof enjoy all your input here... would you be able to share ninjatr@dingbot indicators, would really appreciate it. Quote
Ninja_On_The_Roof Posted June 22 Report Posted June 22 1 hour ago, samsammy said: @Ninja_On_The_Roof enjoy all your input here... would you be able to share ninjatr@dingbot indicators, would really appreciate it. Which bot is that? Quote
⭐ samsammy Posted June 22 Report Posted June 22 (edited) 22 minutes ago, Ninja_On_The_Roof said: Which bot is that? not a bot, it's the trade management indicators in the right chart trader panel... quick trader, trade safe, etc... (from your nexgen picture) Edited June 22 by samsammy Quote
Ninja_On_The_Roof Posted June 22 Report Posted June 22 21 minutes ago, samsammy said: not a bot, it's the trade management indicators in the right chart trader panel... quick trader, trade safe, etc... (from your nexgen picture) Hi, You can get them from the SpyMoney for Chart Trader. For Quick Trader & Trade Safe, you can get it from Neo. Both were educated and posted. Quote
kimsam Posted June 22 Report Posted June 22 (edited) ... to make it run .. we need ..this file .. its not installed .. c:\\Program@Data\\NexGen@Software Services\\NexGen.dll so if any one can get .. can make it work. Edited June 22 by kimsam Quote
kimsam Posted June 22 Report Posted June 22 got it ... ⭐ fryguy1, ⭐ goldeneagle1 and ⭐ RichardGere 3 Quote
⭐ samsammy Posted June 22 Report Posted June 22 (edited) 14 hours ago, Ninja_On_The_Roof said: For Quick Trader & Trade Safe, you can get it from Neo. Both were educated and posted. i found the thread for neotraderbot.com but all links there were dead.. can you or anyone repost the indicators? Edited June 22 by samsammy Quote
Ninja_On_The_Roof Posted June 22 Report Posted June 22 5 hours ago, samsammy said: i found the thread for neotraderbot.com but all links there were dead.. can you or anyone repost the indicators? https://limewire.com/d/HKnFw#AqNFyx25nA ⭐ samsammy, techfo and ⭐ RichardGere 3 Quote
alodante Posted June 22 Report Posted June 22 hello Guys, i bought Nexgen from a hacker, but i cant user in my pc, its multipc. Here are the files, if anyone can fix let me know please. https://limewire.com/d/aNiMN#htOMywvsoj Quote
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.