Jim, Currently you can't, but I suspect this and other features will be added soon. Obviously I can't foretell what Tomasz's plans are for AB, but I do know...
Hello, You don't need OHLC for to use $TICKMODE. I have given not-so-fortunate example in the read me, but it is perfectly enough to supply Date-Time-Last...
hi, i am new to this group. can anybody help me to setup the dde of 5 paisa terminal of india infoline so that i can import the intraday quotes to amibroker. i...
Try this - Adjust the time period to what you are looking for Jason // Exploration to create //Correlation matrix // Be sure to set //"Apply to" to desired...
Following is a simple buy signal premised upon the 25 day simple moving average just having crossed above the 75 day simple moving average coupled with the 25...
Hi! I try to compare buy&hold with may trading system but I failed. Could somebody to give me an exemple how to compare profit of my trading system with...
Hello, Yes, it is single-liner without even needing to write a loop: Buy = Sum( MA( Close, 25 ) > MA( Close, 75 ), 11 ) == 11; (note that in your code you are...
OK, I admit I have read too fast :-( Corrected formula is: Buy = MA( Close, 25 ) > MA( Close, 75 ) AND Ref( Sum( MA( Close, 25 ) < MA( Close, 75 ), 10 ) , -1 )...
Can anyone tell me how i can take a data file from esignal and use it in an IB database. i have an esignal account but want to backfill the IB database This is...
No there isn't - except for the stuff I've done for the PBI Collected Documentation at http://finance.groups.yahoo.com/group/amibroker-beta/files/ There have...
I've been trying to find a profitable entry / exit signal for the Short portion of a system. Using my long systems exits as short entries doesnt seem to work,...
ALL: I'm interested and while no expert I have a collection of snippets that I've filed on my Infoselect database over the past 2 years and would be happy to...
Tomasz, Just wanted to thank you for the recent beta. I have it up and running real time and it's working perfectly. Both you and Marcin are terrific. Thank...
That would be nice if we can get this off the ground. As to publishing others work: If it was posted on a forum then I think it would be ok (if anyone...
Hi, As for short entries/exits write up a whole new set of rules. On yesterdays CME webair Markus Heitkoetter of Rockwell Trading highly recommended time...
Joe, I have been doing much the same creating an indexed PDF of ideas pulled from the list. I am gone for the weekend and can’t get to the file but when I...
Tomasz, My "kind words" are actually an understatement! And. Thank YOU for the point about using StaticVarSet and StaticVarGet. They are much easier than...
when my buy conditions are met...I have a profit target also calculated. How can I ensure that it exits at that profit target although it might not be the same...
I am using TC2000 data. What is the easiest way to create watch lists of the various indexes, NASDAQ, S&P, etc. SImple question, I know, but any help would be...
Hello, I have set-up Wiki page at: http://www.amibroker.org/wiki/ as a tool for this collaborative documentation project. For those of you who do not know what...
Everybody here asking for features in front of new version comes out. Can I ask too? Some of system tester results are duplicating themself or they not much...
Currently, value labels are shown in desceding order of value. Example: If I have a price chart and a stchastic overlay with value of Price=15, Stochastic= 20,...
This guide is too complicated for me.. Can you please write formula that will remove "CAR" from results? I will try to understand the logic and remove others...
I have a problem getting the 37 columns to stay where I change them. I can move them around, but the next time I hit "Back Test", it changes back to the...
boy that was quick duude! d _____ From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf Of Tomasz Janeczko Sent: Friday, July 01, 2005...
How about this more intuitive code (for me and maybe for most others) by using Hold instead of Sum. I think Hold is also more efficient than Sum as it works...