Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Insert Take profit with swing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Insert Take profit with swing

    Hi
    I'm trying to use my strategy (I use strategy buider) to have this result: "condition long Take profit: when current price in equal or greater to Entry price-SWING Low)/2."
    I've searched a lot on precedent post but no solution.
    Can you hep me?
    Thank you
    ​​​​​​​Fra

    #2
    Hi Fiocco, thanks for your note.

    Arithmetic between two data sources can not be done with the builder. This kind of strategy would need to be written in the NinjaScript editor. It would be written like so:

    Code:
    if (Position.MarketPosition == MarketPosition.Flat)
                {
                    EnterLong(Convert.ToInt32(DefaultQuantity), "");
                }
    
                 Print((Position.AveragePrice - Swing1.SwingLow[0] / 2));
    
                if (Position.MarketPosition == MarketPosition.Long && Close[0] >= (Position.AveragePrice - Swing1.SwingLow[0] / 2) )
                {
                    ExitLong();
                }
    But (Position.AveragePrice - Swing1.SwingLow[0] / 2) is always true because your subtracting your average entry price from the most current Swing Low, so the resulting value is always a very low number.

    Kind regards.

    Comment


      #3
      Thanks I hope I can easily manually correct my code

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      96 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      154 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      82 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      54 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      72 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X