selectedvalue(Barindex()) ? depending on your application you me need to precede this with Setbarsrequired(1000000,1000); Best regards, herman For tips on...
Try this quick method to delete them. 1) make a spare copy of the database with some data in it (say at least 5days). 2) delete all of the .OB stock in that...
Not sure, perhaps a loop is needed, or the Custom backtester. h For tips on developing Real-Time Auto-Trading systems visit: http://www.amibroker.org/userkb/...
Mike, Array maths works on whole arrays at a time, so there's no such thing as a current index scalar, and there's no concept of "at any bar". You're always...
Hello, First and foremost, you need to carefully read "Understanding AFL" http://www.amibroker.com/guide/h_understandafl.html Then read the gp_sydney reply: ...
Hi guys, im after a way to ignore a buy signal if there has been a previous buy signal on the underlying in the last 30 days? is there an easy way to do that?...
all the bosses sorry for disturbing you.I am not a programmer so i cant debug the errors. will you help me by sending the full coding?it is giving error. ...
... The way I understand it, if you are hoping to "getCurrentBarIndex()" as it logically advances during AFL array-based operations, you can't. Those ops are...
Hi all, Sorry for asking a newbie question. Do you know if the stochastic RSI (stochrsi) indicator as defined by stockcharts.com (see link below), which is...
Hi there, I import Swedish market historical quotes from Yahoo. As many have noted, the ticker names are different for the same stock. The question is: Should...
Hi, Has anyone of you ever come across the problem of properly backtesting stop-loss orders at intraday level in order to get the correct High-Low sequence...
Hi, I want to trade one symbol intraday with an ATC as part of the buy and sell signals. If I set AA Apply to = current symbol, how do I tell ATC to use a...
Hello, Recently I have noticed some e-mails sent by participants to groups -at- amibroker dot com address. This is invalid address for private communication. I...
Has anyone of you ever come across the problem of properly backtesting stop-loss orders at intraday level in order to get the correct High-Low sequence within...
try: period = 13; graph0=100*( ( RSI( period ) - LLV( RSI( period ) , period ) ) / ( ( HHV( RSI( period ) , period ) ) - LLV(RSI( period ), period ) ) ); ... ...
The other alternative is to leave amiquote the way it import tickers according to yahoo conventions and use alias in amibroker to match the correct names, ie...
hello sir , PLEASE, please help me in ranking stocks as i have read \ applied all available posts \formulas but no luck... i want to rank them in this order ...
In your backtest code try adding the line: Buy = Buy AND BarsSince(Ref(Buy, -1) < 29); Haven't tested it but it should be quick and easy to try. Rgds,...
See LastValue() and SelectedValue functions in help Count = LastValue(BarsSince(Buy)); ... From: "Mike" <sfclimbers@...> To: <amibroker@yahoogroups.com> ...
Thanks for that. Can I follow up? I feel like I should know this - but what is the advantage of using Alias of Symbol Translation table? What does one gain?...
Thanks for that. Can I follow up? I feel like I should know this - but what is the advantage of using Alias of Symbol Translation table? What does one gain?...
Hello, In a AFL formula I wrote something like that : AddColumn( DateTime(), "Date", formatDateTime ); AddColumn(Open,"Open",1.6); AddColumn(High,"High",1.6); ...
Dear Group I recently used Quote Tracker with Amibroker and upgraded the Standard version to Pro version yesterday. I made a Portfolio of some 70 scrips in QT...
Dear Group I recently used Quote Tracker with Amibroker and upgraded the Standard version to Pro version yesterday. I made a Portfolio of some 70 scrips in QT...
My recent experience with QT is that: 1. When a symbol is added to AB, you need to refresh AB (View/Refresh All) otherwise symbols get mixed up. 2. Some...
Does anybody know if there is way to change the color of ROC to red and character type to bold if it has a negative value in the following statement? TIA ...
I figured out how to change the color to red when ROC is negative. The following is a reworked version: if (SelectedValue( ROC(C,1)) < 0 ) ROCFormat =...
Thanks for all the replies. You have confirmed what I expected. I'm already doing looping. I was just hoping someone might have a neat little trick, so as to ...
If Buy has not yet been set, you will need to break out the signal from the asignment. Also check for > 29 rather than < 29. Signal = ... buy logic ... Buy =...