NexusFi: Find Your Edge


Home Menu

 





Profit Manager


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one PowerBroker with 3 posts (0 thanks)
    2. looks_two Fat Tails with 2 posts (5 thanks)
    3. looks_3 NJAMC with 2 posts (0 thanks)
    4. looks_4 ThatManFromTexas with 1 posts (3 thanks)
      Best Posters
    1. looks_one ThatManFromTexas with 3 thanks per post
    2. looks_two Fat Tails with 2.5 thanks per post
    3. looks_3 ryangillespie with 1 thanks per post
    4. looks_4 redratsal with 1 thanks per post
    1. trending_up 4,764 views
    2. thumb_up 10 thanks given
    3. group 7 followers
    1. forum 10 posts
    2. attach_file 0 attachments




 
Search this Thread

Profit Manager

  #1 (permalink)
 
ryangillespie's Avatar
 ryangillespie 
london, England
 
Experience: Intermediate
Platform: Ninjatrader
Trading: CL, ES
Posts: 41 since Nov 2011
Thanks Given: 10
Thanks Received: 2

Hi ,

Just wanted to know if there is an anything like this posted withing the community. I have been looking but no joy.

Thanks

NinjaTrader Profit Manager | Indicator Warehouse - YouTube

Started this thread Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
ZombieSqueeze
Platforms and Indicators
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
REcommedations for programming help
Sierra Chart
Better Renko Gaps
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #3 (permalink)
 PowerBroker 
DetroitMIUSA
 
Posts: 192 since Feb 2012


I was gonna pop up a thread as I just watched a vid on YT about this indi. Seems to be the real thing. as I scalp I was wondering if anyone here @ futures.io (formerly BMT) has this indi already and if it reallllllly does what IW says it can do. TIA

Reply With Quote
  #4 (permalink)
 
NJAMC's Avatar
 NJAMC 
Atkinson, NH USA
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader 8/TensorFlow
Broker: NinjaTrader Brokerage
Trading: Futures, CL, ES, ZB
Posts: 1,970 since Dec 2010
Thanks Given: 3,037
Thanks Received: 2,395


ryangillespie View Post
Hi ,

Just wanted to know if there is an anything like this posted withing the community. I have been looking but no joy.

Thanks

NinjaTrader Profit Manager | Indicator Warehouse - YouTube

Seems really cool. I like the concept of this Indicator. I really don't know how they fire and Order from within their Indicator. There must be some other application (maybe the chart trader itself, could be an IW special version) that is talking with the Indicator to fire the orders.

I wonder if @Fat Tails has an Idea how they fire the orders from an Indicator?

Nil per os
-NJAMC [Generic Programmer]

LOM WIKI: NT-Local-Order-Manager-LOM-Guide
Artificial Bee Colony Optimization
Visit my NexusFi Trade Journal Reply With Quote
  #5 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102


NJAMC View Post
Seems really cool. I like the concept of this Indicator. I really don't know how they fire and Order from within their Indicator. There must be some other application (maybe the chart trader itself, could be an IW special version) that is talking with the Indicator to fire the orders.

I wonder if @ Fat Tails has an Idea how they fire the orders from an Indicator?


The indicator has a few simple options for a trailing stop. It then closes all positions, when the stop line is hit.
Maybe the following (not officially supported) NinjaScript command is used.

 
Code
NinjaTrader.Gui.SuperDom.SuperDom.FlattenEverything()

I will test it. That command would flatten all open positions for all accounts that NinjaTrader is connected to.

Reply With Quote
Thanked by:
  #6 (permalink)
 
redratsal's Avatar
 redratsal 
Milan (I)
 
Experience: Advanced
Platform: Ninjatrader
Broker: Kinetick
Trading: FDAX,6E,CL,YM,NQ,ES
Posts: 1,648 since Oct 2010
Thanks Given: 1,215
Thanks Received: 2,090


Fat Tails View Post
The indicator has a few simple options for a trailing stop. It then closes all positions, when the stop line is hit.
Maybe the following (not officially supported) NinjaScript command is used.

 
Code
NinjaTrader.Gui.SuperDom.SuperDom.FlattenEverything()

I will test it. That command would flatten all open positions for all accounts that NinjaTrader is connected to.

I did some experiments with chart traders extra buttons and order handling post 609 and 610 all the rest of the op indicator is pretty math oriented and FT is amaster.

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #7 (permalink)
 PowerBroker 
DetroitMIUSA
 
Posts: 192 since Feb 2012

My thought was that if it can do what they say it can do then what is the purpose of custom strategies in the ATM? Isn't it the same thing if the parameters are set right? There are different types of options in the profit manager for the stops. Why has no one coded these in here? Profit manger is like $750. That's quite a lot of money for an add on.

It also said in the vid I watched that it handles the order at the exchange and also cancels it there as well. Can anyone confirm that info?

Reply With Quote
  #8 (permalink)
 
ThatManFromTexas's Avatar
 ThatManFromTexas 
Houston,Tx
 
Experience: Advanced
Platform: NinjaTrader
Broker: Mirus Futures/Zen-Fire
Trading: TF
Posts: 2,265 since Feb 2010
Thanks Given: 1,206
Thanks Received: 4,353

The way I handled it;

Wrote an indicator that passes information to a strategy that issues the orders and invokes an ATM strategy to handle the stops and targets.

Indicator

 
Code
 #region Variables
        private NinjaTrader.Strategy.TMFTGuidedStrategy trader;

 void OnBuy(object sender, System.EventArgs e)
			
        {
			if(LimitOrders)
			trader.EnterPosition(OrderAction.Buy,OrderType.StopLimit, 1, rangeHi, 0, 0, buyRange);	
			
			else	
			trader.EnterPosition(OrderAction.Buy,OrderType.Stop, 1, rangeHi, 0, 0, buyRange);
Strategy

 
Code
        public void EnterPosition(OrderAction way, OrderType oType, int quantity, double entry, double target, double stop, Button btnCallback)
        {
            

            switch (way)
            {	
                case OrderAction.Buy:
                    switch (oType)
                    {	
						
                        case OrderType.Stop:
							string[] entryOrder = GetAtmStrategyEntryOrderStatus(orderId);
                            atmStrategyId = GetAtmStrategyUniqueId();
							orderId = GetAtmStrategyUniqueId();
							AtmStrategyCreate(Cbi.OrderAction.Buy, OrderType.Stop, 0, entry,
							TimeInForce.Day, orderId, atmname, atmStrategyId);
                            break;
                        case OrderType.StopLimit:
							
							atmStrategyId = GetAtmStrategyUniqueId();
							orderId = GetAtmStrategyUniqueId();
                            AtmStrategyCreate(Cbi.OrderAction.Buy, OrderType.StopLimit, entry, entry,
							TimeInForce.Day, orderId, atmname, atmStrategyId);
                            break;
                    }
                    break;

I'm just a simple man trading a simple plan.

My daddy always said, "Every day above ground is a good day!"
Reply With Quote
Thanked by:
  #9 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102


PowerBroker View Post
My thought was that if it can do what they say it can do then what is the purpose of custom strategies in the ATM? Isn't it the same thing if the parameters are set right? There are different types of options in the profit manager for the stops. Why has no one coded these in here? Profit manger is like $750. That's quite a lot of money for an add on.

It also said in the vid I watched that it handles the order at the exchange and also cancels it there as well. Can anyone confirm that info?

The inbuilt ATM strategies of NinjaTrader just allows you to use a fixed trailing stop. If you want chandelier, supertrend or parabolic stop you need to code a strategy.

The indicator can probably not handle any orders at the exchange. This is what I have understood what the indicator does (please correct me if I am wrong):

It trails the stop on the chart. When price hits that trailing stop, it will then close out all open posisions. The exit orders will be transmitted by NinjaTrader to the broker who will then transmit the exit order to the exchange. In my opinion the indicator does not set a hard stop at the exchange.

If you use an ATM strategy this is quite different. The ATM strategy will actually transmit the trailing stop to the broker - and depending on the broker it will be transmitted to the exchange or locally held by the broker.

As the indicator holds the stop locally, you will not pay any order fees for trailing the stop, as nobody except your PC is involved. This means that you do not get a hard stop held on the exchange. For that reason,the speaker in the video suggested that you use a second hard stop for your own safety.

Reply With Quote
  #10 (permalink)
 
NJAMC's Avatar
 NJAMC 
Atkinson, NH USA
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader 8/TensorFlow
Broker: NinjaTrader Brokerage
Trading: Futures, CL, ES, ZB
Posts: 1,970 since Dec 2010
Thanks Given: 3,037
Thanks Received: 2,395



Fat Tails View Post
The inbuilt ATM strategies of NinjaTrader just allows you to use a fixed trailing stop. If you want chandelier, supertrend or parabolic stop you need to code a strategy.

The indicator can probably not handle any orders at the exchange. This is what I have understood what the indicator does (please correct me if I am wrong):

It trails the stop on the chart. When price hits that trailing stop, it will then close out all open posisions. The exit orders will be transmitted by NinjaTrader to the broker who will then transmit the exit order to the exchange. In my opinion the indicator does not set a hard stop at the exchange.

If you use an ATM strategy this is quite different. The ATM strategy will actually transmit the trailing stop to the broker - and depending on the broker it will be transmitted to the exchange or locally held by the broker.

As the indicator holds the stop locally, you will not pay any order fees for trailing the stop, as nobody except your PC is involved. This means that you do not get a hard stop held on the exchange. For that reason,the speaker in the video suggested that you use a second hard stop for your own safety.

I believe your interpretation is correct. I get the same from the video:
-Follows the "Logic" selected for the Indicator and "Stops" when condition is met]
- Warned to set a manual stop (through chart trader?) in case the computer looses connection as the "Stop" is indicator generated not at the mark
- Doesn't state it can do a selective stop of any sort so your exit all positions is probably all they are doing when the limit is crossed

I am pretty sure the Chart Trader isn't available if you set a stategy on the chart so it is a cleaver work around.

This "Money Management" feature they have is something I am trying to build into the LOM project.

Nil per os
-NJAMC [Generic Programmer]

LOM WIKI: NT-Local-Order-Manager-LOM-Guide
Artificial Bee Colony Optimization
Visit my NexusFi Trade Journal Reply With Quote




Last Updated on March 9, 2012


© 2024 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 - Privacy Policy - Downloads - Top
no new posts