thanks colion.
Why would this not return any results in an exploration?
filter = result = iif( c > o, ma( (h + L)/l, 15), null);
addcolumn(result,"result");
New Analysis window should be floating like the old analysis window was.
Okay I found the floating option under the windows tab but it isn't a permanent solution. Like you have to set floating every time the AA is opened.You can make it floating too. Just do right-click on the AA tab and select 'floating'.
AB 5.50 just released.
My first post here. I'm looking forward to interacting with fellow AB users.
On the front page they have many features listed as new in 5.50: like free Fundamental Data and
direct link to eSignal, Interactive Brokers. Are there any expanded info on these features. Don't want to install the new version incase it breaks my current setup.
Hello. Ok, let's get ready to rumble.
On the front page they have many features listed as new in 5.50: like free Fundamental Data and
direct link to eSignal, Interactive Brokers. Are there any expanded info on these features. Don't want to install the new version incase it breaks my current setup.
I'm currently studying scale-out code. There is the question of what to do with new entry signals that occur prior to completion of the scale-out (or stop-out).
If the original position has been reduced by half (via scale-out), I want to add back that size at the new signal.
Hi all,
I'm trying to set up a buy condition based on the amount of buy signals my system is generating at the time.
I am basically trying to use this method:
http://www.amibroker.com/guide/a_addtocomposite.html
Where data is stored in a false ticker.
Here is the code I'm currently playing with, but have tried many variations without much luck.
buysignalcount = Buysignal;
AddToComposite(Buysignalcount, "~BuySignalCount", "C");
BuySigAvg = MA(Foreign("~BuySignalCount", "C"),10);
AddToComposite(BuySigAvg, "~BuySignalCount", "V");
Graph0 = Foreign("~BuySignalCount", "C");
Graph0 = Foreign("~BuySignalcount", "V");
So it's generating a false ticker ~BuysignalCount, and adding the buysignals to the close price of the ticker. I can get this to work.
I'm then trying to get the MA(C, 10) for this close price, and add it to the same ticker as the volume. I can get the volume to display, but the numbers are in the 1000's, and they should be <10. Can't work out the issue here.
Once I get the volume working I want to be able to reference this volume specifically in the code so I can add a buy condition based on it.
Basically I dont want to be buying if there aren't enough buy signals being generated.
Cheers
Foreign function synchronizes the data file
you are referencing with the currently selected symbol.
Synchronization makes sure that EACH bar of FOREIGN data
matches exactly with each bar of currently selected symbol.
So if DateNum() function returns 990503 for given bar
then Close array represents the CLOSE of currently selected symbol at May 3, 1999
and Foreign("SYMBOL", "C") represents close of foreign symbol at May 3, 1999 TOO.
This is absolutely necessary because otherwise you won't be able
to do ANY meaningful operations involving both selected symbol and foreign symbol.
This also needed for the display so when you mark the quote with vertical
line it will always match the date displayed regardless if you use Foreign or not.
Please note that if you have data holes in currently selected symbol then in order to synchronize bars Foreign function will remove bars that exist in Foreign symbol but do not exist in currently selected symbol.
Newb question: say I put a horizontal line from the sp years ago and then the sp has gone down or up by a significant amount, is there a way I can 'scroll down' the window to see where the line is?
Newb question: say I put a horizontal line from the sp years ago and then the sp has gone down or up by a significant amount, is there a way I can 'scroll down' the window to see where the line is?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?