Jump to content

⤴️-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

  1. N9T

    QuantVue QkronosEVO

    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
  2. N9T

    QuantVue QkronosEVO

    OG velo settings (1m chart, regular candlestick) Somehow, I cannot attach more images. Size limit hit.. Will try again later.
    3 points
  3. N9T

    QuantVue QkronosEVO

    Here are the settings for Timid velo (1m chart, regular candlestick) all the rest is empty as in velo settings.
    3 points
  4. https://drive.google.com/file/d/1aGUuoNQ0qVSjqzZoR2CS9Y-mvQw_OlSW/view?usp=sharing One of Ninja Trader's best Trader video training
    2 points
  5. N9T

    QuantVue QkronosEVO

    So, here are the settings for Velociraptor (1m chart, HA type)
    2 points
  6. If anyone can provide the setup for amibroker v7 beta I am sure I can fix it for you. please provide. preferably x64 version thanks
    2 points
  7. 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-Jane
    1 point
  8. 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.txt
    1 point
  9. TRADER

    quantvue.io

    @apmoo
    1 point
  10. Hope someone does. I will post here if I do. Thanks
    1 point
  11. I would rather do the newest I am sure someone here can help. Thanks though
    1 point
  12. Oana SSS

    QuantVue QkronosEVO

    Thank you very much. You are awesome. 🙏
    1 point
  13. Playr101

    QuantVue QkronosEVO

    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. Thanks
    1 point
  14. dex

    QuantVue QkronosEVO

    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 @Bene
    1 point
  15. https://workupload.com/archive/fv8YhV8sKt Turkey Time Thanks
    1 point
  16. 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
  17. kimsam

    .NinZa-VoluTankArmy

    https://workupload.com/file/rZES3k4Bvks updated .. please confirm if ok
    1 point
  18. Gagirl

    Eds Retrace Plan

    Overview (3).doc
    1 point
  19. Gagirl

    Eds Retrace Plan

    EdsRetracePlan2025 (2).zipthere is no manual for it, but here is his newest version
    1 point
  20. https://workupload.com/archive/h2eg9nLVRT Thanks
    1 point
  21. apmoo

    Eds Retrace Plan

    https://workupload.com/file/Ph5gGTfUje8 Thanks
    1 point
  22. orfila

    Grok

    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
  23. Chidiroglou

    WOLFE WAVE

    it would certainly be an advantage if someone could optimize it for the NT8
    1 point
  24. 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

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...