Leaderboard
Popular Content
Showing content with the highest reputation on 06/20/25 in Posts
-
Try and goodluck. Do you have other indicators or materials related to this backtothefuturetrading? TachEonTimeWarpAurora_Edu.zip6 points
-
REQUEST https://www.dtbtraders.com/
⭐ goldeneagle1 and one other reacted to Ninja_On_The_Roof for a topic
It says "indicators_strategies". All the indicators are in that package. https://workupload.com/file/ jTnUUZ77ALe https://limewire.com/d/5zmrt#9dKEbCWo6d2 points -
Weis Wave NT8 indicator - Need to be unlocked
⭐ goldeneagle1 and one other reacted to fxtrader99 for a topic
Wow, you have an excellent memory! I have found the Weis Wave indicator from Neo pack, but it appears to be a limited version of the original Weis Wave indicator as it plots only 8 Weis wave swings (max). It plots the volume well, but plots all the bars gray only. I am attaching the install file for reference. NTB_iWeisWave_v1.zip2 points -
2 points
-
TDU Dynamic Reversal Zones
⭐ goldeneagle1 reacted to kadi for a topic
Hi All, is there an Educated version on here of TDU Dynamic Reversal Zones? (Searched and did not find) or Does anyone have it to share? @apmoo Please can you educate this trial version? Thanks TDUDynamicReversalZones.zip1 point -
nCatElliotWave
ahmed777 reacted to Ninja_On_The_Roof for a topic
https://limewire.com/d/tNBTK#rgBelfxJMo1 point -
TachEonTimeWarpAurora needs to fix
⭐ goldeneagle1 reacted to TRADER for a topic
https://workupload.com/file/DzQdHMjkg5x @apmoo @kimsam1 point -
Greatest Trades of All Time!
⭐ option trader reacted to ⭐ gadfly for a topic
This is entertaining and instructive.... The Most Epic Trades of All Time by Professor Jeff Bierman Video Link.txt1 point -
1 point
-
TachEonTimeWarpAurora needs to fix
TRADER reacted to ⭐ RichardGere for a topic
Thank you very much. I have this Tacheon Force that is HWID protected by VAL. Hope it will be useful. TachEonForce_SE.zip1 point -
REQUEST https://www.dtbtraders.com/
⭐ goldeneagle1 reacted to ampf for a topic
Here the ones I found Templates.zip1 point -
Thank you @rcarlos1947 for the reupload1 point
-
Thank you @Ninja_On_The_Roof for your care and feedback. I just found the templates and will now take a look on how the indicators behave1 point
-
Nex Gen 3 Group Buy
⭐ goldeneagle1 reacted to Ninja_On_The_Roof for a topic
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-indicator1 point -
Trade Terminator AI Bot Needs To Be Unlocked
⭐ goldeneagle1 reacted to TickHunter for a topic
This is the last revision of the Trade Terminator AI Bot. It will need to be unlocked. https://tradeterminator.net TradeTerminatorStrategyAIv2_09beta.zip1 point -
Trade Terminator AI Bot Needs To Be Unlocked
⭐ goldeneagle1 reacted to TickHunter for a topic
Yeah, probably. I believe it trades off the ATR values. I didn't play with it very much. They seem to like larger renko bars and heiken ashi candles when using it.1 point -
Trade Terminator AI Bot Needs To Be Unlocked
⭐ goldeneagle1 reacted to Ninja_On_The_Roof for a topic
@TickHunter by the look of this, you can actually make the very same bot yourself, just by using your Ninjatrader. It isnt that difficult to make it.1 point -
Nex Gen 3 Group Buy
⭐ goldeneagle1 reacted to roddizon1978 for a topic
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);1 point -
Any one has Bollinger%B Pro from Ninja.co??
⭐ goldeneagle1 reacted to ⭐ Mestor for a topic
NinZaBollingerPercentB_NT8.zip1 point -
Weis Wave NT8 indicator - Need to be unlocked
Traderbeauty reacted to fxtrader99 for a topic
This is the original Weis Wave indicator, and it can plot either Weis Wave on the main panel or Weis Wave volume on the second panel. It was locked to my old desktop and I couldn't get a new license key after moving to the new PC. I am also attaching the Weis Wave setup document for reference. It would be great if someone could unlock this indicator. WeisWave_NT8_V1.0.1.zip Weis -Wave-Setups.pdf1 point -
indicators needs to unlock very import indi for ninjatrader
⭐ osijek1289 reacted to kimsam for a topic
Old version.. not tested ... https://workupload.com/file/U4vRBLUw7Y91 point -
hope you got the answer already. ;d ^^1 point
-
using the resource fully , without any restrictions as it would be the case of a legit user. Educated means, making use of app without 1) any restrictions, 2) without paying charges , vendor asks for i) onetime or ii) periodical.1 point
-
Nex Gen 3 Group Buy
⭐ goldeneagle1 reacted to Ninja_On_The_Roof for a topic
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#mdRCIYqCVh1 point -
A new diamond in the rough- a very good educator
⭐ goldeneagle1 reacted to ⭐ fryguy1 for a topic
Rohit handle on Telegram: @clubsuser Channel: https://t.me/+rKGqfn0OnJoxMDZl1 point -
HFT SPECTRE Group Buy
⭐ goldeneagle1 reacted to ⭐ fryguy1 for a topic
I haven't used it. One user on Telegram mentioned he has and got it from the original seller. It's sold on a monthly fee. Some people like it and I know someone that can unlock and I've had something done. Maybe the other one's are better, I don't know. File below is what I was given. Non EDU. HFT_SPECTRE_LITE_V21.zip1 point -
Edge Runner Auto (from Pro Edge Trading)
⭐ goldeneagle1 reacted to mmicro for a topic
Try these new temps Normal Entry-Market-ATR trade-Max Profit-Edgeband Stop(1).xml Normal Entry-Market-Static Profit-Edgeband Stop(1).xml BackGround Entry-Market-SignalBarShadow Stop-One Body Profit(1).xml1 point -
Is val1312q legit?
⭐ goldeneagle1 reacted to Karmaloop for a topic
Where can we find Rohit? Cause I find Brokey to be slow to respond after purchase is completed. I need an update (after finding out I was delivered an outdated version of the software) and I am having to wait days for a response.1 point -
pivot Hunter needs to fix
⭐ goldeneagle1 reacted to TRADER for a topic
https://workupload.com/file/Bwntct8xW7M @apmoo @kimsam1 point -
Auto trend lines for Amibroker
⭐ option trader reacted to ⭐ Atomo12345 for a topic
Automatic trendlines for Amibroker. https://e.pcloud.link/publink/show?code=XZRGUdZydimQa5JGVVBNuoBzYIqf5v3M4bX1 point