Anyone got any recommendations for order management software?
Currently looking at NinjaTrader but would like to look at others.
Regards
Vino
Search found 6 matches
- Wed Aug 15, 2007 10:48 am
- Forum: AmiBroker
- Topic: BuyZone indicator for Amibroker
- Replies: 31
- Views: 142358
- Gender:

- Sat Aug 11, 2007 12:51 pm
- Forum: AmiBroker
- Topic: BuyZone indicator for Amibroker
- Replies: 31
- Views: 142358
- Gender:

Thanks for the feedback David. Now I've been testing this for a while and see it working, I would investigate more automated means to enter trades like you refer to, especially for when prices are moving quickly. To date entering manually entering the parameters for bracket orders has helped getting...
- Thu Aug 02, 2007 11:38 am
- Forum: AmiBroker
- Topic: BuyZone indicator for Amibroker
- Replies: 31
- Views: 142358
- Gender:

I've used similar code a couple of times now paper trading the first hour after open. It helps to pick the entry points quite well although my speed to place the order needs to improve as delay eats into the profit. I still need some practise with finding the best exit point. So far slightly down af...
- Sun Jul 29, 2007 12:33 pm
- Forum: AmiBroker
- Topic: BuyZone indicator for Amibroker
- Replies: 31
- Views: 142358
- Gender:

Good work. I will find this code useful. You have inherited an error. To plot the Support line properly, I think anyone using this should change the following line of code: Dynamic_S = IIf(H <= Dynamic_S ,L,Dynamic_S); to Dynamic_S = IIf(L <= Dynamic_S ,L,Dynamic_S); Now I've seen how to do the slot...
- Wed Jul 25, 2007 1:14 pm
- Forum: AmiBroker
- Topic: BuyZone indicator for Amibroker
- Replies: 31
- Views: 142358
- Gender:

- Sat Jul 21, 2007 2:00 pm
- Forum: AmiBroker
- Topic: BuyZone indicator for Amibroker
- Replies: 31
- Views: 142358
- Gender:

Your code seems to work fine. Seemed sensible to make the support and resistance apply only to the day in question - otherwise the first iPeriod number of bars are distorted by the previous day's bars (especially if there was a significant gap). I haven't looked at the TS code, so not sure if this m...