Search found 6 matches

by from_vino
Wed Aug 15, 2007 10:48 am
Forum: AmiBroker
Topic: BuyZone indicator for Amibroker
Replies: 31
Views: 142358
Gender: None specified

Anyone got any recommendations for order management software?

Currently looking at NinjaTrader but would like to look at others.

Regards
Vino
by from_vino
Sat Aug 11, 2007 12:51 pm
Forum: AmiBroker
Topic: BuyZone indicator for Amibroker
Replies: 31
Views: 142358
Gender: None specified

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...
by from_vino
Thu Aug 02, 2007 11:38 am
Forum: AmiBroker
Topic: BuyZone indicator for Amibroker
Replies: 31
Views: 142358
Gender: None specified

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...
by from_vino
Sun Jul 29, 2007 12:33 pm
Forum: AmiBroker
Topic: BuyZone indicator for Amibroker
Replies: 31
Views: 142358
Gender: None specified

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...
by from_vino
Wed Jul 25, 2007 1:14 pm
Forum: AmiBroker
Topic: BuyZone indicator for Amibroker
Replies: 31
Views: 142358
Gender: None specified

Never code late at night! This version corrects the error I made in the previous version. :oops: //DynamicSR iPeriods = Param("iPeriods",5 ,1, 100,1); DayValue = Day(); NewDay[0] = 1; for( i = 1; i < BarCount; i++) { if (DayValue[i] == DayValue[i-1]) NewDay[i] = 0; else NewDay[i] = 1; } Ba...
by from_vino
Sat Jul 21, 2007 2:00 pm
Forum: AmiBroker
Topic: BuyZone indicator for Amibroker
Replies: 31
Views: 142358
Gender: None specified

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...

Go to advanced search