⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥
Leaderboard
Popular Content
Showing content with the highest reputation on 11/29/2025 in all areas
-
Here are my NT templates. https://limewire.com/d/Xuzlw#Lf0Hwp4ju8 I cannot upload any more files in here. Must have reached some limits.7 points
-
3 points
-
3 points
-
Traderlion Unlock the Secret of Contrarian Trading
⭐ goldeneagle1 and one other reacted to roddizon1978 for a topic
https://drive.google.com/file/d/1aGUuoNQ0qVSjqzZoR2CS9Y-mvQw_OlSW/view?usp=sharing One of Ninja Trader's best Trader video training2 points -
2 points
-
Please, I want Amibroker 6,43 64bit
⭐ chullankallan and one other reacted to candyman for a topic
If anyone can provide the setup for amibroker v7 beta I am sure I can fix it for you. please provide. preferably x64 version thanks2 points -
Apmoo- thank you so much
Mourya reacted to Traderbeauty for a topic
Hi APMOO We all thank you soooooo much. You are amazing and we want you to know that we dont take it for granted. I manually added every possible badge and points so you are now a GRAND MASTER. Thanks again Traderbeauty-Jane1 point -
SMM Metrics Time filter refined
Gérard Lenorman reacted to FCScalper for a topic
I refined the code in Tradingview, so, backtesting it can be the same as using Predator with the NT8 version. 111tick profit, 156 stop, 76% win rate since Aug 31. I took the test frim the closing of the candle and not the opening, since that reveals where the next candle will open to get the actual trade done. i am still working around win loss ratio and stops, but this one should get you started with those 100K prop acc, since we still have 20% drawdrawn on a 10k investment and a 254%return. I changed the code for time filter. starts at 9am NY till 4 oclock to get those results and stops btw 12 and 12.29 NY lunch. Play around with it Gonna keep trying to work on this but looks decent. @version=5.txt1 point -
1 point
-
Hope someone does. I will post here if I do. Thanks1 point
-
Please, I want Amibroker 6,43 64bit
⭐ chullankallan reacted to candyman for a topic
I would rather do the newest I am sure someone here can help. Thanks though1 point -
1 point
-
Well when someone does that, could they please screenshot and post here? Since I have a basic TV account with 1 saved template so I can't create a new one. Thanks1 point
-
Click the above links one by one. Click the copy button (top right). Save each as a new layout. Go to the new layout and click the gear icon on the indicator list to view the settings. @Boka @Bene1 point
-
https://workupload.com/archive/fv8YhV8sKt Turkey Time Thanks1 point
-
Metastock 18 end of day c*****d.
⭐ chullankallan reacted to ⭐ RichardGere for a topic
It works offline and reads and chart offline for both EOD and Intraday data. You can't use it online unless you have a data subscription with Zenith. Version 19 is good only for charting. As mentioned Chullankallan, the System Tester and Explorer function will crash the program if selected. Without these 2 functions, the Version 19 is not useful. If you check the Metastock release log, they even removed mention of version 19. Their release version is 18 then 20. No mention of 19 anymore.1 point -
https://workupload.com/file/rZES3k4Bvks updated .. please confirm if ok1 point
-
1 point
-
Eds Retrace Plan
Gérard Lenorman reacted to Gagirl for a topic
EdsRetracePlan2025 (2).zipthere is no manual for it, but here is his newest version1 point -
ChartSpots_BreakEven_v3 needs to crack
LoneBladeRGC reacted to ⭐ apmoo for a topic
https://workupload.com/archive/h2eg9nLVRT Thanks1 point -
https://workupload.com/file/Ph5gGTfUje8 Thanks1 point
-
Grok
lalelulilo reacted to orfila for a topic
Anyone using Grok? I think it is the answer to a lot of dreams .... ;--) Question to Grok and answer :: "are you able to translate code to ninjatrader c#" Answer :: Yes, I can help translate code into NinjaTrader's C# (NinjaScript) format, provided you share the source code or describe the logic you want to implement. NinjaTrader uses a specific subset of C# with its own classes, methods, and conventions for trading strategies, indicators, or other scripts. If you provide the code or a clear description of the functionality (e.g., a trading strategy, indicator, or condition), I can: 1. Translate code from another language (e.g., Python, Java, MQL4/5, etc.) into NinjaScript C#. 2. Adapt existing C# code to work within NinjaTrader's framework. 3. Write new NinjaScript code for NinjaTrader based on your requirements. ### Steps to Help You: - **Share the Code or Logic**: Provide the source code you want to translate or a detailed description of the functionality (e.g., "I want a strategy that buys when RSI crosses above 70 and sells when it crosses below 30"). - **Specify NinjaTrader Version**: Let me know if you're using NinjaTrader 7, 8, or 9, as the syntax and features differ slightly (e.g., NinjaTrader 8 introduced new methods and removed some older ones). - **Clarify Script Type**: Indicate whether you need a strategy, indicator, or other script type (e.g., market analyzer, drawing tool). - **Include Any Constraints**: Mention any specific NinjaTrader objects (e.g., `Close`, `Open`, `SMA`, `Trade`) or conditions you want to incorporate. ### Example Translation Process If you provide something like this (pseudocode): ``` If 50-period SMA crosses above 200-period SMA, buy 1 contract. If price drops 2% below entry price, sell. ``` I can translate it into NinjaScript for NinjaTrader 8 like this: ```csharp protected override void OnBarUpdate() { // Calculate SMAs double sma50 = SMA(Close, 50)[0]; double sma200 = SMA(Close, 200)[0]; double sma50Prev = SMA(Close, 50)[1]; double sma200Prev = SMA(Close, 200)[1]; // Check for cross above if (CrossAbove(sma50, sma200, 1)) { EnterLong(1, "LongEntry"); } // Exit if price drops 2% below entry price if (Position.MarketPosition == MarketPosition.Long) { double entryPrice = Position.AveragePrice; if (Close[0] <= entryPrice * 0.98) { ExitLong("LongExit"); } } } ``` ### Notes: - NinjaScript has specific methods like `EnterLong`, `ExitLong`, `SMA`, `CrossAbove`, etc., which I’ll use appropriately. - If you share code in another language, I’ll map it to NinjaTrader’s equivalent methods and structure (e.g., `OnBarUpdate` for per-bar logic). - If the code involves external libraries or complex logic, I may need clarification on how to adapt it, as NinjaTrader has limitations (e.g., no direct support for certain external APIs). - If you want real-time data or external data (e.g., from X posts or web searches), I can incorporate that if you enable DeepSearch mode, but NinjaTrader scripts typically rely on internal data (e.g., `Close`, `Open`). Please share the code or logic you want to translate, and I’ll provide the NinjaScript C# equivalent tailored to your needs! Cool!1 point -
WOLFE WAVE
lalelulilo reacted to Chidiroglou for a topic
it would certainly be an advantage if someone could optimize it for the NT81 point -
A new diamond in the rough- a very good educator
lalelulilo reacted to ⭐ TRAD3R.GURU for a topic
Just my experience about "nadjib d" I had bought ARC AI from "nadjib d" for $250 (negotiated price, original price $360). After few weeks, he released new version, so i requested an update from him. He denied update saying i didn't pay full price originally and if i need update, i need to pay $140 more. If he had told me while buying, i wouldn't have bought from him. Just to be aware.1 point