
roddizon1978
Members-
Posts
168 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Articles
Everything posted by roddizon1978
-
Nice, Thank You.
-
Add some supply and demand indicator, it will do wonder for you
-
Anyone can educate with Viper Trading Indicator?
roddizon1978 replied to Tasfy's topic in Ninja Trader 8
Yes it was educated already , find it. Even you educate it and have the manual, You need some lessons to learn it; it is not that easy. So you need a least a month to 2 month of membership , to master it , $149 a month membership . I need Orderflow Labs educated, I need to test it. E -
I tried using it, and it kind of freeze my chart.
-
Anyone can educate with Viper Trading Indicator?
roddizon1978 replied to Tasfy's topic in Ninja Trader 8
$27 at clubbing house , big discount it is $149 a month for membership -
I have posted trade copier better than this, don't waste your time. You probably sell it to telegram again.
-
I have observed this last night and today. As I said before, it looks like a Fib count of an Elliot wave, but he only uses 3 count and reject the rest, and I saw this numbering before, in my Elliot wave Ninjacator Indicator. I bet you that is where he copied it, in the Ninjacator Elliot wave strategy, without all the projected and violated area excluded, he just put the numbers to show that area. I bet that if you installed the Ninjacator Elliot wave indicator, they would match. Now, those bars I think is based on the Fib count, the first bar is the retracement bar, seem like and he color it, the 2nd bar I think is the projection bar , and display only when the first bar is fully satisfied and there is a big chance that the projection bar could happen (2 to 3) the color I believe is base also on their accomplishment first bar, and 2nd bar. The strategy, I think here is trade on the projection, where it is going. Where to trade, as I tried with a simulation account, when the 2 bars are almost the same in color it mean the direction is right and have highest chance it will happened; where to stop, when the 2 bars have a slight or big difference in color, mean more opposition or opposite of your projection or guest. And I made profit trading it that way.
-
The download documentation has English explanation on the bottom part
-
TDU Footprint & Footprint Trader 2.0.0.12 beta 3
roddizon1978 replied to ⭐ rcarlos1947's topic in Ninja Trader 8
https://limewire.com/d/LPdls#2G0IHMoj56 -
TDU Footprint & Footprint Trader 2.0.0.12 beta 3
roddizon1978 replied to ⭐ rcarlos1947's topic in Ninja Trader 8
I got old TDU Footprint trader (2024) but it won't let me attach it, I am allow only 1.13 KB it is 53 kb -
Simpler Trading / Simpler Options courses
roddizon1978 replied to MavKol's topic in Trading Systems & Strategies Request
what course do you need, maybe I could help you. For indicator you could go to Usethinkscript, theyhave all imitated over there. -
Looking for Jigsaw for NinjaTrader – Really Need It!
roddizon1978 replied to Tinzqwz's topic in Ninja Trader 8
@Volume_Tools -
True, I contact the Guy, I ask for proof he got it , he just laugh at me, he said we don't want your money, meaning he don't have it. The only time probably he will have it, is if I buy it in on one site for $30 and loaded it in here, and then , he will download it. Then he will message me again and he will said , see, I got it.
-
Does this include the MZpack Indicators .exe installer. Look like it just install the strategy.
-
https://drive.google.com/file/d/1l8eWFSi5_H0lh6TINNEE7BlFtX7fx-PU/view?usp=drive_link Now you have a file to break
-
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
-
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);
-
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.
-
I don't have that, not included in the Old TDU bundle, must be a new one.
-
Very interesting, as far as I know, he don't have ZoneVue, he is selling,maybe I am wrong
-
Rohit is good, he fixed my Bookmap lately, no charged. Tell me if you want to buy something so I could have a discount next when I buy with him as referal.
-
He is legit, but he is slow to respond when you want to upgrade. Try upgrading with him by offering $10 to $20 to upgrade, and he will respond immediately. Espescially the one you bought from clubbing, that you want to upgrade.