Have you tried reading the help files? http://www.amibroker.com/guide/afl/afl_view.php?name=StrFormat *STRFORMAT *- Write formatted output to the stringfh =...
Thanks Terry but that won't work with EOD charts unfortunatley. Programs like Metastock allow you to switch between TD's and CD's but I can't see how you do...
of course, thanks _____ From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf Of Fred Sent: Wednesday, 1 November 2006 6:07 PM To:...
As far as I know AB does not display bars if there is no data. The only time is if you are plotting a foreign symbol that has less data bars than the selected...
Hello Grant, Yes, it is a minority interest subject. I did warn people in advance in most posts. Just quickly hit the delete button. Fortunately for you and...
I used to get bouncing all the time, Once I setup a GMail account and redirected all mail to there I have not had one bounce. Just setup your email client to...
Hello, It plots the dominant cycle itself - it plots ONE (co)sine wave with phase/frequency of selected bar (sbar). Best regards, Tomasz Janeczko amibroker.com...
Hello, There are two reasons: 1. non-technical: for sake of not producing non realistic results AB must not allow to specify different prices for rotation...
Thanks to the silent majority for your patience with me on the Psychology included in this topic. Right at the moment I can't see myself raising the subject...
TJ or anyone: Is there an example code anywhere which shows using the custom backtester with rotational trading AND a trailing stop exit?? IOW, rotational...
jlami11: It would be like this: popen = Foreign(sig.symbol, "O"); entryprice = popen[bar]; // then use entryprice in place of sig.Price. - Mark ... From:...
It's 12 hours later, but I don't see an answer to your question so, You need to review the documentation for Backtesting Systems. Some points to consider: Buy...
Right, no data I suppose. Then the answer must be NO. -- Terry ... From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf Of bruiserbbq ...
I've tried using the Now Function and having some problems with it. When I use it in the middle of the month, the numeric value increments by one as each day...
... Thanks for your continued assistance. Yes, I checked the help topic for StrFormat, and that topic is incomplete. The topic doesn't state that, when given...
Hi All, I have a variable named "Days_Till_Sell" that I want to set every time a BUY is triggered. PROBLEM: I need that variable to stay the same value until...
Hello, It does not require custom backtest. Use normal ApplyStop for that and such line: PositionScore = IIF( ...markettiming_is_on_buy, YourNormalScore,...
TJ: thanks for the reply but it seems you did not read my entire message in which I want to use rotational trading and exit positions based on a Trailing stop...
This is OT on psychology but a while back I believe you were asking about statistics and trading? Here's a very simple statistical test that can be run using...
use static variables. search help on "static" ... From: "gosub283" <gosub283@...> To: <amibroker@yahoogroups.com> Sent: Wednesday, November 01, 2006 8:41...
This can be done via a special PositionScore you designate which is not used else where: For example: stopcond = ...trailing stop exit condition... ...
Gosub283, Amibroker is an array processing system. This means the ENTIRE ARRAY is determined "all-at-once" and processed just ONCE. There is the loop code ...
You are using the Datenum() format 1061031 = 106 10 31 ie 31st Oct 2006 -- Cheers Graham AB-Write >< Professional AFL Writing Service Yes, I write AFL code to...
StaticVarSet produces a new static variable for use later in the code StrFormat does not produce a variable, it only formats the output -- Cheers Graham ...
Try this, assuming you do not get another buy signal within the number of bars to hold, you may need to add exremspan function as well to remove any axcess buy...
I want to display historical dividend/earnings or their dates which are stored in external file. I want to display up/down arrow for earning or div. amt. text...
Hi there! I'm trying to develop a daytrading system(daily bars only) that buys on the open and sells on the close and also uses a modified variation of Tharps...
QuantTrader, You are in the right topic. I took a part of it somewhere else which it not that smart a thing to do as it causes confusion and de-values the...
Sure, I do it all the time. For example, I got quarterly SP500 as-reported EPS going back 40 years or so and saved it in a CSV file. Then I used the Import...