Wysiwyg
Everyone wants money
- Joined
- 8 August 2006
- Posts
- 8,428
- Reactions
- 284
With my novice experience I don't understand what you mean by adding the date to set up Yahoo downloads. The downloader (Amiquote) has the date ranges on it.Hi all
Trying to Setup the ASX data in Amibroker, Im just not sure how to add the date, can anyone help me with providing me instruction please ?
thank you
How do I get the MA of the volume on the same scale as the Volume.
I simply clicked on the volume indicator and then dragged the MA onto the same chart but it comes out like this:
View attachment 41856
right click over the volume window, click parameters and make sure that in the style boxes, that ownscale isn't checked.
Thanks for that.
Another question. This is part of my current filter: Filter = ((Cross(C,Ref(HHV(C,40),-1)) AND C>O AND H>MA(C,40)) OR (Cross(Ref(LLV(C,40),-1),C) AND C<O AND L<MA(C,40)))
It is possible to plot the HHV(C,40),-1) and LLV(C,40,-1) on my chart? So that I can visually see when it crosses also?
Thanks
x = Ref(LLV(L,40),-1);
y = Ref(HHV(H,40),-1);
Plot(x, "lowest value",colorRed,styleLine);
Plot(y, "highest value",colorGreen,styleLine);
this should do it:
Code:x = Ref(LLV(L,40),-1); y = Ref(HHV(H,40),-1); Plot(x, "lowest value",colorRed,styleLine); Plot(y, "highest value",colorGreen,styleLine);
Hi, I was wondering if anyone here knows how to edit quotes that are being read with the metastock data plug in? Can it even be done?
Not as far as I'm aware. The quote editor in AB only works on a local database. To edit quotes in a MS binary database you'd need to edit them at the external database level.
There is the option of exporting quotes from a MS external database into ASCII format using an exploration then reimporting them into a local AB ASCII database if you are looking to modify quotes often?
Does using MyATR = prec(ATR(20),2); work?
How do I create a horizontal line that doens't extend across the entire screen? One that can just extend over a few days and I can alter in length?
Thanks,
Matt
Daysback = Param("Days Back",126,10,252,1);
FirstBar = BarCount - DaysBack;
YY = IIf(BarIndex() >= Firstbar,EndValue(Close),Null);
Plot(YY,"LastClose",colorRed,styleThick);
Plot(Close,"Close",colorBlack,styleCandle);
How do I create a horizontal line that doens't extend across the entire screen? One that can just extend over a few days and I can alter in length?
Thanks,
Matt
How do I zoom in and out forJUST the volume window (separate window to the price information)?
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?