Thanks.The simple answer is to ask AE.
Hi folks, I have another problem.
How can I get AB to tell me the point in time when an intraday high or a low was reached?
Thanks!
Hi Joshsmi --
If you are using end-of-day data, you know four prices -- open, high, low, and close -- and two times -- open and close. You can make no assumptions about anything else.
If you are using intra-day data, you can look at the highest of the intra-day bars and note that time. But you will not know for certain whether it is the highest of the day until after the day is complete.
If you are looking for the highest price so far, look at the HHV statement.
Thanks,
Howard
PipValue= Param("PIP Value",0.0001,0.0001,0.01,0.01);
LastBar=Param("Last Hourly Bar",230000,000000,230000,010000);
Filter = TimeNum() == LastBar;
isRtH1 = TimeNum() >= 140000 AND TimeNum() < 180000;
RH1 = IIf(isRth1, H, Null);
RL1 = IIf(isRth1, L, 100000);
DayH1 = TimeFrameCompress( RH1, inDaily, compressHigh );
DayH1 = TimeFrameExpand( DayH1, inDaily, expandFirst );
DayL1 = TimeFrameCompress( RL1, inDaily, compressLow );
DayL1 = TimeFrameExpand( DayL1, inDaily, expandFirst );
aRH1= DayH1-DayL1;
RP1=round(aRH1/PipValue);
Days = Day();
LowestSoFar = LowestSince(Days != Ref(Days, -1), DayL1);
HighestSoFar = HighestSince(Days != Ref(Days, -1), DayH1);
TimeH = ValueWhen(H == HighestSoFar, DateTime());
TimeL = ValueWhen(L == LowestSoFar, DateTime());
AddColumn(RP1,"14-18 Range", 1.0, colorDefault, colorDefault,75);
AddColumn(DayH1,"14-18H",1.5,colorGreen,colorDefault,65);
AddColumn(DayL1,"14-18L",1.5,colorRed,colorDefault,65);
AddColumn(TimeH, "Time of High", formatDateTime,colorDefault, colorDefault,120);
AddColumn(TimeL, "Time of Low", formatDateTime,colorDefault, colorDefault,120);
I’m currently running eSignal data into AB for the AUD. Previously I tried using the free IB data feed, but have had too many issues with backfilling, unreliable tick data etc. Broker is IB.
I’m curious to know if there are any issues related to using FXCM’s tick data into AB? How reliable is the data, are there backfill issues, and anything else I should be aware of.
In addition to this those of you who have used both IB and FXCM, appreciate any comparison comments.
Hi Joshsmi --
If you are using end-of-day data, you know four prices -- open, high, low, and close -- and two times -- open and close. You can make no assumptions about anything else.
If you are using intra-day data, you can look at the highest of the intra-day bars and note that time. But you will not know for certain whether it is the highest of the day until after the day is complete.
If you are looking for the highest price so far, look at the HHV statement.
Thanks,
Howard
I’m currently running eSignal data into AB for the AUD. Previously I tried using the free IB data feed, but have had too many issues with backfilling, unreliable tick data etc. Broker is IB.
I’m curious to know if there are any issues related to using FXCM’s tick data into AB? How reliable is the data, are there backfill issues, and anything else I should be aware of.
In addition to this those of you who have used both IB and FXCM, appreciate any comparison comments.
Ok, you were probably referring to this description www.amibroker.com/fxcm.html
There it is written that there is no automatic backfill because the AB DDE plugin doesn't provide auto backfill.
If you wanna have automatic backfill you have to use the MT4 plugin with rateserver.exe. You can find it at the Yahoo Amibroker group http://finance.groups.yahoo.com/group/amibroker/ in the files section
Yes that's the description I was referring to. Regarding the MT4 plugin, is it 'True' tick data? If so then that sounds like what I'm after. I'll check it out, thanks.
I have a system that I’ve tested over approx 1 yr of eSignal tick data on the AUD.USD. This has been performed manually, which is very time consuming? I’m keen to have it tested in greater detail over a longer period of time. Therefore is anyone able to provide info of a reputable co. that can perform detailed backtesting in Amibroker. I have the code as an indicator which would give a coding expert a decent start to create what I’m after. My coding abilities are extremely average, if virtually non-existent. I’ve always struggled going beyond detailed excel formula!
Appreciate any suggestions.
I have a system that I’ve tested over approx 1 yr of eSignal tick data on the AUD.USD. This has been performed manually, which is very time consuming? I’m keen to have it tested in greater detail over a longer period of time. Therefore is anyone able to provide info of a reputable co. that can perform detailed backtesting in Amibroker. I have the code as an indicator which would give a coding expert a decent start to create what I’m after. My coding abilities are extremely average, if virtually non-existent. I’ve always struggled going beyond detailed excel formula!
Appreciate any suggestions.
Hello and welcome to Aussie Stock Forums!
To gain full access you must register. Registration is free and takes only a few seconds to complete.
Already a member? Log in here.