NexusFi: Find Your Edge


Home Menu

 





SetProfitTarget only if my condition is true


Discussion in NinjaTrader

Updated
    1. trending_up 2,222 views
    2. thumb_up 1 thanks given
    3. group 1 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
 
Ironman9973's Avatar
 Ironman9973 
New York
 
Experience: Intermediate
Platform: NinjaTrader, TradeNavigator
Broker: Optimus Futures
Trading: Piano
Posts: 111 since Jul 2012
Thanks Given: 53
Thanks Received: 59

I would like to set my profit target, with a limitorder on the close[0] if the RSI > 75. But my problem is, if my order is filled NT sets my profit target to the recent close when the RSI was at 75. That is not what I want. I want my limitorder only set if I am allready in the position and the RSI > 75. I tried:

if (RSI(3, 1)[0] >= 75)
{
profit = Close [0];
SetProfitTarget("EinstiegLong", CalculationMode.Price, profit);
}

I think I have to reset the variable somehow. But I donīt know exactly how.
Thank you for your help.


Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Iran Deal "In Review" at 87% on Deadline Day - …
Prediction Markets & Event Contracts
$12M Ceasefire Contract Goes Disputed as Bandar Abbas St …
Prediction Markets & Event Contracts
Peace Deal Forward Curve: May 22%, June 51%, December 81 …
Prediction Markets & Event Contracts
Kalshi Sets $4.13B All-Time Weekly Record as Polymarket …
Prediction Markets & Event Contracts
World Cup Opens: USA at 45.5% Tonight as Markets Push Ba …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
10 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 thanks
  #3 (permalink)
 joobeng 
Singapore
 
Experience: Advanced
Platform: NinjaTrader
Trading: Crude Oil
Posts: 1 since Jan 2012
Thanks Given: 22
Thanks Received: 1



Ironman9973 View Post
I would like to set my profit target, with a limitorder on the close[0] if the RSI > 75. But my problem is, if my order is filled NT sets my profit target to the recent close when the RSI was at 75. That is not what I want. I want my limitorder only set if I am allready in the position and the RSI > 75. I tried:

if (RSI(3, 1)[0] >= 75)
{
profit = Close [0];
SetProfitTarget("EinstiegLong", CalculationMode.Price, profit);
}

I think I have to reset the variable somehow. But I donīt know exactly how.
Thank you for your help.

You need to add an additional condition to check if you are already in a position:

Eg:

if (Position.MarketPosition == MarketPosition.Long)

{

if (RSI(3, 1)[0] >= 75)
{
profit = Close [0];
SetProfitTarget("EinstiegLong", CalculationMode.Price, profit);
}


}


Reply With Quote
Thanked by:




Last Updated on November 20, 2012


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts