Forget about my letter below. I have registered and downloaded Metatrader. Cound you send me the macrofile. Thank You Prashanth ... From: Prashanth To:...
Hi Thanks for you thoughts, but I think that we have a slightly different approach to trading forex. I strongly believe that the big profits are in the big...
Padhu, 1. & 2. There is no need to run two instances for that. Just create NEW window(s) via Window->New or Window->New Linked and switch them to 15 minutes. ...
Something like a factor of 5 between timebases is ok. 3-10 max. These are for trading. On the fourth monitor I sometimes just have email., but maybe I'll...
Traderix, You need to add a plot function as in: period=5; cond1=Ref(MA(C,20),-period); Plot(Cond1,"Forward EMA",1,1); Plot(C,"Close",colorBlack,styleCandle);...
I am trying to find a good data feed for AB. I have tried Yahoo, and at times it appears that the stock price is not adjusted for splits- is that true? As an...
Hello, ... could be written simpler as: Industry = StrFormat( "!ID%03.0f", IndustryID(0) ); Best regards, Tomasz Janeczko amibroker.com ... From: "grmulhall"...
Hello, AmiQuote by default downloads SPLIT and DIVIDEND adjusted prices. ============================================ These are different than UNADJUSTED...
Thanks for your reply Here's what I have now...but it's still wrong...oh dear!...........help! Plot(PDI(21, colorGreen,1); Plot(MDI(21, colorRed,1); ...
Good day, I have been testing systems with backtester and am wondering about REFERENCE: Let's assume I have my database ready with today's quotes (updated as ...
Hi, I am currently trade option I am using the following volatility comparing short term and long term volality to time when to buy and sell options. ...
You could always try the help files for correct way of writing statements Plot(PDI(21), "MD+",colorGreen,1); Cheers, Graham http://e-wire.net.au/~eb_kavan/ ......
You cannot have a buy statement using tomorrows prices. The best you could do would be to have the delays set to zero and use cross(h,1.02*ref(c,-1)) this...
... long ... I trade options in Australia as well. I use the following for the volatility GraphXSpace=10; Plot(StDev(log(C/Ref(C,-1)),20) * sqrt(260)*100, "20...
Thanks for your help again Graham..I'm really struggling to get my head around the code (never done it before) here's what I have now...but the last line is...
Would you be trying to plot the Aligator's teeth, according to Bill Williams? Let me know if you get it worked out because displacing it as others have show...
You forgot "@@@@@@" where it is just any old convenient name. Plot(EMA(ADX(21),21),"@@@@@",colorBlack,8); as graham suggested, we all started here by reading...
... Thanks Bundy for reply. Your Setting does sound logical and as u say u have trade with it with success. My setting 1. peroid short 30 long 200 was base on...
In setting up the intraday IB database I would like to be able to filter different session times for different futures contracts to match the open auction or...
Hi Ron, I believe you are talking about a batch exploration. In the User's Guide(Amibroker Object Model), there are some scripting examples that could be...
Bruiser, you will avoid a lot of frustration if you read the help files. The below code does not plot because it does not follow the correct syntax. ...