Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SamplePriceModification

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

    SamplePriceModification

    Hello, how do I add short position in the strategy attached, thank you.
    Mark.
    Attached Files

    #2
    Hello snakepatob,

    Thank you for your post.

    In general, a short position can be added with the reverse conditions as the long. In this strategy there would need to be a few changes. Below is and example of using the reverse of what is used for the long and considering the position before taking a new position.
    Code:
    			// Resets the stop loss to the original value when all positions are closed
    			if (Position.MarketPosition == MarketPosition.Flat)
    			{
    				SetStopLoss(CalculationMode.Ticks, stoplossticks);
    
    				// Entry Condition: Increasing price along with RSI oversold condition
    				if (Close[0] > Close[1] && RSI(14, 3)[0] <= 30)
    				{
    					EnterLong();
    				}
    				
    				// Opposite of long condition
    				if (Close[0] < Close[1] && RSI(14, 3)[0] >= 30)
    				{
    					EnterShort();
    				}
    			
    			}
    			
    			
    
    			// If a short or long position is open, allow for stop loss modification to breakeven
    			else if (Position.MarketPosition == MarketPosition.Long)
    			{
    				// Once the price is greater than entry price+50 ticks, set stop loss to breakeven
    				if (Close[0] > Position.AvgPrice + 50 * TickSize)
    				{
    					SetStopLoss(CalculationMode.Price, Position.AvgPrice);
    				}
    			}
    			else if (Position.MarketPosition == MarketPosition.Short)
    			{
    				// Once the price is greater than entry price-50 ticks, set stop loss to breakeven
    				if (Close[0] < Position.AvgPrice - 50 * TickSize)
    				{
    					SetStopLoss(CalculationMode.Price, Position.AvgPrice);
    				}
    			}

    Comment


      #3
      Patrik,
      thanks for listening, I could include the code and compile.
      Without your help I would not have succeeded.
      Mark.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by frslvr, 04-11-2024, 07:26 AM
      9 responses
      123 views
      1 like
      Last Post caryc123  
      Started by rocketman7, Today, 09:41 AM
      4 responses
      16 views
      0 likes
      Last Post rocketman7  
      Started by selu72, Today, 02:01 PM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_Zachary  
      Started by WHICKED, Today, 02:02 PM
      2 responses
      18 views
      0 likes
      Last Post WHICKED
      by WHICKED
       
      Started by f.saeidi, Today, 12:14 PM
      8 responses
      21 views
      0 likes
      Last Post f.saeidi  
      Working...
      X