[Komunitas AmiBroker] Cara updte data historical

2009-08-21 Thread Lanny Kristanto
Pak Dendo dan kawan2, Saya, Alfred, mau nanya gimana caranya mengupdate data historical untuk satu ticker saja (gzco.jk)? Saya sudah mencoba meng update nya melalui yahoo historical, tetapi data tidak tampil pada amibroker saya. Bagaimana caranya untuk mendapatkan data tersebut, sehingga bisa

Re: [amibroker] ELLIOTT WAVE AND ELLIPS INDICATOR AS IT IS IN ADVANCED GET SOFTWARE

2009-08-21 Thread Vijay Patel
YES FRIEND YOU TELL ME WHAT DOES HE MEAN BY THAT? --- On Thu, 8/20/09, Mubashar Virk mvir...@gmail.com wrote: From: Mubashar Virk mvir...@gmail.com Subject: Re: [amibroker] ELLIOTT WAVE AND ELLIPS INDICATOR AS IT IS IN ADVANCED GET SOFTWARE To: amibroker@yahoogroups.com Date: Thursday, August

[amibroker] Re: TimeFrames: Is their use flawed?

2009-08-21 Thread jorgen_wallgren
Hi AF, I wouldn't go that far and say it's a nightmare. I have implemented it for rather complext calculations and it works just fine. :-) Sure, if seperate charts for each time frame works for you- that's of course the easiest way. But please remember, different users- different needs. But

[amibroker] help loop programming

2009-08-21 Thread chaoss45
Hi all, I'm trying to program the following idea in a loop, but could use some help. Right now i have the following code to measure the high of a specific time range. (4 hour timerange) H1 = ValueWhen(timerange, TimeFrameGetPrice( H, inHourly, 0, expandFirst)); H2 = ValueWhen(timerange,

Re: [amibroker] Tick data calcualtion or export

2009-08-21 Thread Tomasz Janeczko
Yes, just use addtocomposite. If you use it on tick chart, in all older versions (pre 5.27) it will automatically compress it to 5-second timeframe for you. Then you will be able to get data usign Foreign. Or use static variables. DLL is not required. Best regards, Tomasz Janeczko amibroker.com

[amibroker] Using Exploration to filter correlation???

2009-08-21 Thread ezbentley
I am aware of how to create a correlation matrix among the stocks in a given watchlist. However, what I am interested in is to use Exploration to filter for highly correlated stocks. So my intent is something like this(pseudo code only): Correl = Correlation(StockA, StockB, 250); Filter =

[amibroker] Rotational Question

2009-08-21 Thread djamibroker
I have been trying to search the archives for some assistance on rotating from a strategy to a single security if a condition is met but its hard to find within all of the messages. What I would like to do is have a strategy that buys mutual funds based on lets say ROC. However if the filter

[amibroker] help programming loops

2009-08-21 Thread chaoss45
Hi all, I'm trying to program the following idea in a loop, but could use some help. Right now i have the following code to measure the high of a specific time range. (4 hour timerange) H1 = ValueWhen(timerange, TimeFrameGetPrice( H, inHourly, 0, expandFirst)); H2 = ValueWhen(timerange,

[amibroker] color code AFL

2009-08-21 Thread mravie7
Hi, If I want to color the time period 11:45 till 13.30, as say Green color, then what should be the AFL.(this is to alert me from trading indices between these time frames, everyday) Thanks for the help Cheers Ravi

[amibroker] Re: color code AFL

2009-08-21 Thread chaoss45
Hi Ravi, You could try this: starttime = 114500; endtime = 113000; timecond = TimeNum() = starttime AND TimeNum() = endtime; Plot(timecond, , colorGreen, styleArea|styleOwnScale,0,1); Chaoss --- In amibroker@yahoogroups.com, mravie7 mrav...@... wrote: Hi, If I want to color the time

[amibroker] Timeframe setup

2009-08-21 Thread m.csabee
Hello for everybody here in the forum! I want to know what are the ways in which two different time frame indicators can be displayed in Amibroker, in same window. Example: I would display Stochastic%D 5,3,1 in daily and weekly periods. Probably it#8217;s an easy step (somehow with

Re: [amibroker] Timeframe setup

2009-08-21 Thread i cs
Hi m, I'm just learning about multiple time frame support also - I've found the following page very useful. http://www.amibroker.com/guide/h_timeframe.html If that doesn't help, just post again. Cheers, RZ From: m.csabee m.csa...@yahoo.com To:

Re: [amibroker] Re: color code AFL

2009-08-21 Thread reinsley
Works when starttime is lower than endtime... Best regards chaoss45 a écrit : Hi Ravi, You could try this: starttime = 114500; endtime = 113000; timecond = TimeNum() = starttime AND TimeNum() = endtime; Plot(timecond, , colorGreen, styleArea|styleOwnScale,0,1); Chaoss ---

[amibroker] Re: Rotational Question

2009-08-21 Thread re_rowland
Derek, The psuedo code logic you need is something like: If SP its 200 MA then set PositionScore of bond funds to 999 (very high value) else set PostionScore normally If your worst held rank is x, then include at least x number of bond funds in your universe to force the rankings of all

[amibroker] Re: TimeFrames: Is their use flawed?

2009-08-21 Thread jorgen_wallgren
Hi AF, Not sure what you are trying to do here? But one thing I know- a couple of things are not correct and it's out of sync. Even if the example was OK, it would show that it can be done. But not any advantage of having higher TF data in a high res mode. For that the demo should show

[amibroker] Re: color code AFL

2009-08-21 Thread chaoss45
Oeps... Thanks reinsley! --- In amibroker@yahoogroups.com, reinsley reins...@... wrote: Works when starttime is lower than endtime... Best regards chaoss45 a écrit : Hi Ravi, You could try this: starttime = 114500; endtime = 113000; timecond = TimeNum() =

[amibroker] Request for Programming Help

2009-08-21 Thread mishphar
Hi Please help me someone I need to explore/Filter the Moving Average value of some stocks like MA5,MA10,MA20,MA50

RE: [amibroker] Request for Programming Help

2009-08-21 Thread Jerry Gress
Hello, Sure come over to: https://connectnow.acrobat.com/traderjerry And we will see if it works! Note have not tried this for over 3 months. Only first two or three or what ever, allowed in. Jerry -Original Message- From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com]

[amibroker] Re: TimeFrames: Is their use flawed?

2009-08-21 Thread af_1000000
Hi Jorgen, Since you have not explained in details what you method is I took your example as a proxy what it is all about. Your code says quite explicitly : for any higher timeframe CURRENT period take values from PREVIOUS higher timeframe periods and add values from the current period but at

Re: [amibroker] ELLIOTT WAVE AND ELLIPS INDICATOR AS IT IS IN ADVANCED GET SOFTWARE

2009-08-21 Thread malcolm Crouch
ha ha Vijay , What i mean is that take some iniative be productive a learn how to write the thing your self you will grow as a person and you will learn something about trading . cheers Malcolm On Fri, Aug 21, 2009 at 9:32 AM, Vijay Patel v_pate...@yahoo.com wrote: YES FRIEND YOU

[amibroker] Tick charts with IB data

2009-08-21 Thread peter843
The AB web site says: The finest resolution of BACKFILLS that Interactive Brokers TWS offers is 1-SECOND bars. It means that although you can collect streaming real-time data in tick format, the backfill will always have resolution limited to 1-second bars. Also IB TWS streaming data are NOT

[amibroker] Re: Data cleansing / cleaning - removing bars

2009-08-21 Thread only_accept_the_real_thing
Tomasz, Thankyou for your reply. I am familiar with what a NULL is. What I am not familiar with is whether the way NULL is handled by the backtester is as expected or not. From your response, it sounds like the backtester is treating NULLs as it should - ie: as an unknown value that it cannot

Re: [amibroker] Re: Data cleansing / cleaning - removing bars

2009-08-21 Thread Tomasz Janeczko
Hello, No, you don't understand. The prices (Open High Low Close) must NOT be NULL. Period. All bars need to have known prices because all values are used for equity calculation, even if there are no signals at given bar. If you want to clean your data - DO IT FIRST. Clean it BEFORE doing

[amibroker] Re: 2 instances of AB using same IQFeed Plugin

2009-08-21 Thread tradinghumble
--- In amibroker@yahoogroups.com, Tomasz Janeczko gro...@... wrote: Hello, Crash - no. It won't crash. But simply if you use two instances the LAST one that writes will overwrite any previous writes, so some edits/changes previously saved in another instance can be overwritten if the

[amibroker] Re: finding pairs

2009-08-21 Thread ezbentley
I guess what Mike is trying to do is to replicate the feature of PairTradeFinder in AmiBroker, which is to scan for highly correlated pairs. I am also interested in how that can be done in AmiBroker. If anyone can help, that would be great.

[amibroker] Re: Tick data calcualtion or export

2009-08-21 Thread glider128
Thanks Tomasz. I will give it a go. I am using v5.27 professional at the moment. Scott --- In amibroker@yahoogroups.com, Tomasz Janeczko gro...@... wrote: Yes, just use addtocomposite. If you use it on tick chart, in all older versions (pre 5.27) it will automatically compress it to

[amibroker] COT Movement Index

2009-08-21 Thread haiguise
I have no idea why i cant get this indicator to work. Anyhow the idea is get the COT data (it is in weekly format) find the Net position, highest high and lowest low. Then take that which will be between 0-100 and find the Rate of change of 6 weeks ago. When i do that in Amibroker and plot. I

[amibroker] Re: TimeFrames: Is their use flawed?

2009-08-21 Thread jorgen_wallgren
Hi AF, OK, I understand! Your code is really compact and fast! But unfortunately there seems to be a few problems... If you compare your code with a 15 min interval chart running bar replay- side by side- the values you get are not correct. If I am not wrong, first you must add expandFirst

[amibroker] Exclude Open Trades from Back testing report

2009-08-21 Thread dimension0
Hi, I would like to know how i can exclude open trades from my back testing results. is there an option or setting for this? thanks much