⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥
All Activity
- Past hour
-
TDU footprint v.2.0.14 zip + Big trades v1.0.0.9 - new features
indicat replied to sarutobi's topic in Ninja Trader 8
Anyone has latest educated TDU footprint? Or what is the "latest" that is edu? -
indicat reacted to a post in a topic:
TDUAlgoSuite
-
Thank you very much! Is it possible to have a short tutorial please?
-
Oana SSS reacted to a post in a topic:
ninZa.co Imbalance Volume Sensor
- Today
-
pygmalion5000 reacted to a post in a topic:
Full Package Indicators (As Gratitude To The Forum)
-
pygmalion5000 reacted to a post in a topic:
ninZa.co Imbalance Volume Sensor
-
pygmalion5000 reacted to a post in a topic:
Merry Christmas
-
The Lower Indicator for BTD ------------------------------------------------------------------------------------------------------------------------- # Standard version of Buy the Dip indicator # Assembled by BenTen at UseThinkScript.com # Version 1.1 # <INSTRUCTION> # Get support at: https://usethinkscript.com/forums/buy-the-dip.32/ # <NOTES> # Based on the concept of "Synethetic VIX" by Larry Williams # This software is licensed for individual use only. # NOT FOR REDISTRIBUTION PRIVATE/CONFIDENTIAL # Copyright (c) 2020 useThinkScript LLC declare lower; input length = 22; input meter = yes; input arrows = yes; input color_change = yes; # Plot indicator def value = ((high - Lowest(close[1], length)) / Lowest(close[1], length)) * 100; plot buythedip = value; plot Zeroline = 0; def condition = buythedip crosses below Zeroline; buythedip.AssignValueColor(if color_change and buythedip < Zeroline then color.red else color.green); Zeroline.AssignValueColor(color.white); AddLabel(meter and yes, Concat("Meter = ", buythedip), color.orange); # Plot arrows plot UpSignal = if arrows and condition then 0 else Double.NaN; UpSignal.SetDefaultColor(Color.Orange); UpSignal.SetPaintingStrategy(PaintingStrategy.ARROW_UP); # Alert Alert(condition, "Buy the Dip", Alert.Bar, Sound.Chimes);
-
# BTD + STR Original Model + Conservative Model - Upper # Assembled by BenTen at UseThinkScript.com # Modified by BoarTrades #Boar6916 on discord # Version 2 # <INSTRUCTION> # Get support at: https://usethinkscript.com/forums/buy-the-dip.32/ # <NOTES> # Based on the concept of "Synethetic VIX" by Larry Williams # This software is licensed for individual use only. # NOT FOR REDISTRIBUTION PRIVATE/CONFIDENTIAL # Copyright (c) 2020 useThinkScript LLC input length_C = 22; input length_50 = 50; input length_100 = 100; input BTD_meter = yes; input STR_meter = yes; input arrows = yes; input color_change = yes; # BTD Plot indicator - Conservative def BTD_value = ((high - Lowest(close[1], length_C)) / Lowest(close[1], length_C)) * 100; def buythedip = BTD_value; def Zeroline = 0; def BTD_condition = buythedip crosses below Zeroline; # BTD Plot indicator - 50 def BTD_value_50 = ((high - Lowest(close[1], length_50)) / Lowest(close[1], length_50)) * 100; def buythedip_50 = BTD_value_50; def BTD_condition_50 = buythedip_50 crosses below Zeroline; # BTD Plot indicator - 100 def BTD_value_100 = ((high - Lowest(close[1], length_100)) / Lowest(close[1], length_100)) * 100; def buythedip_100 = BTD_value_100; def BTD_condition_100 = buythedip_100 crosses below Zeroline; # STR Plot indicator - Conservative def STR_value = ((low - highest(close[1], length_C)) / highest(close[1], length_C)) * 100; def selltherip = STR_value; def STR_condition = selltherip crosses above Zeroline; # STR Plot indicator - 50 def STR_value_50 = ((low - highest(close[1], length_50)) / highest(close[1], length_50)) * 100; def selltherip_50 = STR_value_50; def STR_condition_50 = selltherip_50 crosses above Zeroline; # STR Plot indicator - 100 def STR_value_100 = ((low - highest(close[1], length_100)) / highest(close[1], length_100)) * 100; def selltherip_100 = STR_value_100; def STR_condition_100 = selltherip_100 crosses above Zeroline; AddLabel(BTD_meter and yes, Concat("BTD = ", buythedip), color.light_green); AddLabel(BTD_meter and yes, Concat("BTD = ", buythedip_50), color.green); AddLabel(BTD_meter and yes, Concat("BTD = ", buythedip_100), color.dark_green); AddLabel(STR_meter and yes, Concat("STR = ", selltherip), color.light_red); AddLabel(STR_meter and yes, Concat("STR = ", selltherip_50), color.red); AddLabel(STR_meter and yes, Concat("STR = ", selltherip_100), color.dark_red); # BTD Plot arrows - Conservative plot UpSignal = if arrows and BTD_condition then 0 else Double.NaN; UpSignal.SetDefaultColor(Color.light_green); UpSignal.SetLineWeight(1); UpSignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); # BTD Plot arrows - 50 plot UpSignal_50 = if arrows and BTD_condition_50 then 0 else Double.NaN; UpSignal_50.SetDefaultColor(Color.Green); UpSignal_50.SetLineWeight(3); UpSignal_50.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); # BTD Plot arrows - 100 plot UpSignal_100 = if arrows and BTD_condition_100 then 0 else Double.NaN; UpSignal_100.SetDefaultColor(Color.Dark_Green); UpSignal_100.SetLineWeight(4); UpSignal_100.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); # STR Plot arrows - Conservative plot DnSignal = if arrows and STR_condition then buythedip_100 else Double.NaN; DnSignal.SetDefaultColor(Color.light_RED); DnSignal.SetLineWeight(1); DnSignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN); # STR Plot arrows - 50 plot DnSignal_50 = if arrows and STR_condition_50 then buythedip_100 else Double.NaN; DnSignal_50.SetDefaultColor(Color.RED); DnSignal_50.SetLineWeight(3); DnSignal_50.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN); # STR Plot arrows - 100 plot DnSignal_100 = if arrows and STR_condition_100 then buythedip_100 else Double.NaN; DnSignal_100.SetDefaultColor(Color.Dark_RED); DnSignal_100.SetLineWeight(4); DnSignal_100.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
-
anyone try to convert this TOS to NT8 script
-
holol reacted to a post in a topic:
quantvue.io
-
holol reacted to a post in a topic:
A11 overnight strategy
-
raj1301 reacted to a post in a topic:
Merry Christmas
-
fxtrader99 reacted to a post in a topic:
KISS Order Flow is an order flow indicator built for Ninja Trader 8 - download
-
Check out the QKronos thread.
-
Gretta reacted to a post in a topic:
A11 overnight strategy
-
I am using NT 8.1.5.2, so it's not that old version. Anyway, here are the screenshots of my settings and XML: https://drive.google.com/drive/folders/1WATfUvLLyNFcYx3WKvFeMIdNOEx-rVhE?usp=sharing On MNQ 1 min chart, 3 micros. I changed the approach a bit, using 3 MNQ with same TP. I dont use the SL from the strategy as I am not sure how it is determined. Instead, I would put a manual SL at nearest swing high/low and cancel the trade if it doesnt work out after 5-10 min as it is supposed to be a high probability (93% according to backtesting) scalp of 90 ticks. I dont use any of the trailing, BE, etc. Results look bad with those on.
-
Hi, I’m having an issue because the XML file appears to be from an older version and doesn’t work on my platform. Would it be possible for you to share screenshots of the strategy settings and the ATM settings instead? That would help me a lot. Thank you very much for your time and support.
-
Welcome to Indo-Investasi.com. Please feel free to browse around and get to know the others. If you have any questions please don't hesitate to ask.
-
Geostrading started following https://copilink.com/
-
Solata Makassar changed their profile photo
-
Solata Makassar joined the community
-
Hi, is there any chance you could share the Qkronos strategy + ATM settings? The XML I have is from an older NT version and doesn’t work anymore. Thanks!
-
It's ok but it was good one
-
Larry Williams Market Forecast 2026
⭐ dynastic replied to taxfreelt's topic in General Discussions and Lounge
One of the most anticipated reports of the year. +1 for an Indo group buy. - Yesterday
-
Grazie compatriota. Tanti auguri e un felice buon Natale anche a te. Thank you, fellow countryman. Best wishes and a Merry Christmas to you too.
-
Merry hristmas and many thanks for your help....have you a good 2026
-
AI is getting pretty good.
-
A complete collection of best formulas for Metastock. https://workupload.com/file/bx55mH2MJVv
-
PJS Profile Bars & PJS Heiken Ashi Need Unlocking
⭐ fryguy1 replied to TickHunter's topic in Ninja Trader 8
Bump -
Larry Williams Market Forecast 2026
⭐ Mestor replied to taxfreelt's topic in General Discussions and Lounge
These reports are interesting... In previous years they were shared for free... Let's hope we have the same luck this year. There's another interesting one too: The Astrology of 2026: A Paradigm Shift -
MOrosi started following indicator need to unlock
-
WD gann courses wits and trader syndicate and many more
cyhun posted a topic in Forex Clips & Movies
WD gann courses wits and trader syndicate and many more Contact me : https://www.facebook.com/share/1AVizuzoeB/ -
roboforex Market Fundamental Analysis by RoboForex
RBFX Support replied to RBFX Support's topic in Fundamental Analysis
US Tech forecast: the index continues its recovery The US Tech index continues to rise toward the resistance level with the potential to reverse the trend. The US Tech forecast for next week is positive. US Tech forecast: key trading points Recent data: U.S. Initial Jobless Claims for last week came in at 214K Market impact: the data has a moderately negative impact on the technology sector Fundamental analysis Initial Jobless Claims measure how many people filed for unemployment benefits for the first time during the past week. This is one of the most timely indicators of labor market conditions: the lower the reading, the more stable employment is and the fewer signs there are of economic deterioration. Claims came in at 214K, compared with a forecast of 224K and the previous reading of 224K. In other words, the figure was better than expected and declined from the prior week. This signals that the labor market remains resilient: companies are generally not accelerating layoffs, and consumer demand is typically supported by more stable household incomes. RoboForex Market Analysis & Forex Forecasts Attention! Forecasts presented in this section only reflect the author’s private opinion and should not be considered as guidance for trading. RoboForex bears no responsibility for trading results based on trading recommendations described in these analytical reviews. Sincerely, The RoboForex Team- 391 replies
-
- anlaysis
- dailyanalysis
-
(and 3 more)
Tagged with:
-
Market Technical Analysis by RoboForex
RBFX Support replied to RBFX Support's topic in Technical Analysis
AUDUSD: the pair has updated its yearly high AUDUSD is showing strong gains, setting a new yearly high at 0.6717. The Reserve Bank of Australia may raise interest rates in 2026. Details — in our analysis for 26 December 2025. AUDUSD technical analysis AUDUSD is showing strong growth, setting a new yearly high at 0.6717. The Alligator indicator is pointing upward, confirming the bullish price momentum. The key support level is currently located at 0.6600. AUDUSD quotes are rising, having set a new yearly high at 0.6717. Read more - AUDUSD Forecast Attention! Forecasts presented in this section only reflect the author’s private opinion and should not be considered as guidance for trading. RoboForex bears no responsibility for trading results based on trading recommendations described in these analytical reviews. Sincerely, The RoboForex Team