[amibroker] Pivots

2010-04-11 Thread victorio91306
I was looking for Pivot Point Studies. Does AmiBroker have a PP Study?

[amibroker] exploration question

2010-04-11 Thread rijnaars
I like to add a column with the result of a relative strenght comparison of 2 stocks. In the chart it shows the plotted results but i can't figure out wich add column statements i need to add. I want to do an exploration of these plotted results for the watcchlist. this is the formula for the

[amibroker] Re: exploration question

2010-04-11 Thread rijnaars
I also like to add crossover buy and sell signals tried a few but ran in to errors i am still a amateur in scripting

Re: [amibroker] Pivots

2010-04-11 Thread wavemechanic
There are several pivot codes in the library that should help you get going. Bill - Original Message - From: victorio91306 To: amibroker@yahoogroups.com Sent: April 11, 2010 2:31 AM Subject: [amibroker] Pivots I was looking for Pivot Point Studies. Does AmiBroker have a

[amibroker] Real time trading - questions on practicality

2010-04-11 Thread B S
I'm currently exploring the best way of automating multiple intraday strategies and was hoping some on the board could give their opinion on whats practical / possible when using AB and IBcontroller to send orders to IB: 1. If I don't want to combine the strategies into one AFL - whats the

[amibroker] Re: Real time trading - questions on practicality

2010-04-11 Thread murthysuresh
trade manually. get a profitable system. automate later. pl dont learn to drive on the freeway. --- In amibroker@yahoogroups.com, B S bs2...@... wrote: I'm currently exploring the best way of automating multiple intraday strategies and was hoping some on the board could give their opinion

[amibroker] check if the time period is over

2010-04-11 Thread murthysuresh
i do my scans every 30 seconds on 5 minute bar. i also want to add a alert that the 5 minute bar is over. i have the following code but for some reason, it never triggers the say message. dunno what is wrong but cannot figure it out. // remind to check charts every 5 minutes

[amibroker] Re: check if the time period is over

2010-04-11 Thread ricko8294_98
Drag and drop this indicator into your window. It determines what time frame your chart is in and counts down to the next bar // Seconds Remaining function GetSecondNum() { Time = Now( 4 ); Seconds= int( Time % 100 ); Minutes= int( Time / 100 % 100 ); Hours

Re: [amibroker] Re: Real time trading - questions on practicality

2010-04-11 Thread B S
Amusing post.  I do appreciate your concern murthysuresh, but I'm more looking for information on how to use Amibroker in a real-time environment, rather than trading advice (apologies if my post gave you that impression).  It would still be helpful though if you or anyone else has a few

Re: [amibroker] How to Change the Sort Order

2010-04-11 Thread Howard B
Hi Alan -- In order to sort them into the order you want them in, you will need to assign each a number that will be used as the sort key. I assume you can define the key and do that. Assign that key to a variable. Use the AddColumn to list the variable. Run the Exploration. Click on the header

[amibroker] alternate foreign symbol coding

2010-04-11 Thread L V Gandhi
In an afl, for index comparison, I put is=Foreign(NIFTY, C); In case of futures, I want is=Foreign(NIFTY_F1, C); if is doesn't return any value in first statement. How should be coded?