Re: [amibroker] Re: Open Interest Field

2010-09-01 Thread Brenton Hill
TA If you're trying to import into the open interest field of an existing security, it is not possible, even using $HYBRID 1, I've tried it, and corresponded with Amibroker support about it, I have copied the reply from Marcin below. Regards Brenton Hello, You should import all the data

[amibroker] Moving Average

2010-09-01 Thread Dennis Lipter
The code below is for a centered moving average. The average is shifted back 9-bars. The problem is that for those 9-bars, a flat line is plotted. I would prefer to have that portion of the plot blank instead of the flat line. mp=IIf(C,(H+L+C)/3,(H+L)/2); x= Ref(MA(mp,18),9);

Re: [amibroker] Moving Average

2010-09-01 Thread cas soni
Hello denis , The average is shifted back 9-bars. it should be x= Ref(MA(mp,18) , -9 ); --- On Wed, 1/9/10, Dennis Lipter blackca...@verizon.net wrote: From: Dennis Lipter blackca...@verizon.net Subject: [amibroker] Moving Average To: amibroker@yahoogroups.com Date: Wednesday, 1 September,

Re: [amibroker] Overlay Without Scale

2010-09-01 Thread reinsley
plot option : || *styleOwnScale* and/or ||*styleLeftAxisScale*| best regards Le 01/09/2010 09:09, Dennis Lipter a écrit : Is it possible to plot an indicator on a chart without tying it to the scale? Another term is overlay without scale I want to plot /Herrick Payoff Index/, and overlay

Re: [amibroker] Re: Open Interest Field

2010-09-01 Thread Tomasz Janeczko
Hello, It does not say that Open Interest is or is not quotation data. And nowhere else in the document are we users told precisely what is or is not quotation data. It also does not say that Close or High or Low is quotation data because it is assumed that reader (trader) knows these

Re: [amibroker] Re: Performance

2010-09-01 Thread Tomasz Janeczko
Hello, Yes, the Chart page is customizable. See Report Charts subfolder (under Charts tab). It contains formulas for charts that appear in backtest report. These formulas are provided in clear text (full source code) and you can modify them, or you can add your own charts. Any formula that you

[amibroker] Chart scroll does not work

2010-09-01 Thread scalpguy
I have imported data in $TICKMODE 1 on the chart and when I am trying to scroll the chart right or left by using the cursor keys the chart does not scroll OR it scrolls a little and then stops. Any idea what is the problem? SG

Re: [amibroker] Chart scroll does not work

2010-09-01 Thread Tomasz Janeczko
Hello, Your data do not include correct timestamps, you have duplicates in date/time column, that's why. Best regards, Tomasz Janeczko amibroker.com On 2010-09-01 13:08, scalpguy wrote: I have imported data in $TICKMODE 1 on the chart and when I am trying to scroll the chart right or

Re: [amibroker] Re: Performance

2010-09-01 Thread tstudent
Infact, i think that Amibroker is a great software too. If i find a way to have results like i'm asking for it will become my principal software. Like i said, for now i'm newbie. Can i ask to someone here in the group to give me an help with the code? If it isn't too much complex i would like

[amibroker] Re: Moving Average

2010-09-01 Thread flyboypa30
Dennis, Try the following: x = MA(mp,18); Plot(x,Centered , colorred, styleline, null, null, -9); This will do the centering of the MA in the Plot statement.

Re: [amibroker] Moving Average

2010-09-01 Thread inquisitive voyager
(1)this code looks in the future. (2)what do u mean by- The average is shifted back 9-bars? (3)To look back 9 bars back,u should use - x= Ref(MA(mp,18),-9); On Wed, Sep 1, 2010 at 12:07 PM, Dennis Lipter blackca...@verizon.netwrote: The code below is for a centered moving average. The

[amibroker] Insync Again

2010-09-01 Thread phild3581
I searched through some of my old disk drives from a few years back and came across the Insync code I had for TradeStation. I had originally paid Samuel Tennyson to write this for me in terms of TradeStation. Insync is a consensus indicator and some may find it of use. I have included the

Re: [amibroker] Moving Average

2010-09-01 Thread Dennis Lipter
Cas, The average is plotted exactly like I want except for the flat line. Using a -9 in the formula shifts the average in the wrong direction. All I want to do is remove the flat portion of the plot. Thanks - Original Message - From: cas soni To: amibroker@yahoogroups.com

[amibroker] CodeForTraders AB Products Update (BTWFMgr) - Sept 2010

2010-09-01 Thread progster01
Hello everyone. CodeForTraders is very pleased to be able to announce a major new product upgrade which we think will be of great interest to many in the AmiBroker community. Burkhard Eichberger's Diamond Backtesting with Walk Forward Manager (BTWFMgr) is now available in a new version with full

Re: [amibroker] Moving Average

2010-09-01 Thread Dennis Lipter
If you look at the plotted average with a +9 in the formula, the plot is shifted 9 bars to the left. So I said the plotted average is shifted 9 bars back in time. Yes I know it looks into the future, which is why the first 9 bars are not calculated due to absence of data. - Original

Re: [amibroker] Re: Moving Average

2010-09-01 Thread Dennis Lipter
flyboypa, This worked! mp=IIf(C,(H+L+C)/3,(H+L)/2); x=MA(mp,18); Plot(x,Centered , colorRed, styleLine, Null, Null,-9); Thanks! - Original Message - From: flyboypa30 To: amibroker@yahoogroups.com Sent: Wednesday, September 01, 2010 8:50 AM Subject: [amibroker] Re: Moving

Re: [amibroker] Re: Moving Average

2010-09-01 Thread Dennis Lipter
Sorry...formula below doesn't do what I want. This formula always shows a blank 9 bars when I scroll the chart. If I scroll the chart and there is data available 9 bars into the future, I want the formula to use that data so the average is plotted over the entire visible portion of the chart.

RE: [amibroker] Re: Open Interest Field

2010-09-01 Thread TA
Thanks Brenton, hopefully TJ would provide an option to do this. From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Brenton Hill Sent: Tuesday, August 31, 2010 11:30 PM To: amibroker@yahoogroups.com Subject: Re: [amibroker] Re: Open Interest Field TA If

Re: [amibroker] Re: Open Interest Field

2010-09-01 Thread Keith McCombs
TA -- I just posted a suggestion, #2034, to that effect at http://www.amibroker.com/feedback/ -- Keith On 9/1/2010 12:34, TA wrote: Thanks Brenton, hopefully TJ would provide an option to do this. *From:* amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] *On Behalf Of *Brenton

[amibroker] Hi Afl experts Can you guess the indicators behind such a chart, please give you

2010-09-01 Thread ford7k
Hi afl experts and chart experts Here is a system and its charts. can you give an idea whatcould be the indicators behind such a chart formation http://sevensummitstrader.s3.amazonaws.com/SST%20Misc%20Videos/082710_tf/082710_tf.html ford ps my guess is the dotted line is a alternating

Re: [amibroker] Re: Moving Average

2010-09-01 Thread Dennis Lipter
Try the following: x = MA(mp,18); Plot(x,Centered , colored, styleline, null, null, -9); This will do the centering of the MA in the Plot statement. Yes, the above formula plots a centered MA. When I am viewing the MA on a chart somewhere in the middle of the chart the first 9 bars are blank.

[amibroker] Re: Report/Stats for individual stocks

2010-09-01 Thread Ronen
Hi Keith That's a brilliant and creative answer! I started looking into using your method when I accidentally ran into a solution that is already built into Amibroker. If you go into the AA window and click on the report tab, you will find a checkbox that says Generate detailed reports for

[amibroker] Re: Moving Average

2010-09-01 Thread flyboypa30
Dennis, Not sure I understand correctly, so I assume that what you are saying is the following: You use the Centered MA Plot statement. You scroll into the middle of your data stream (back a few weeks if using daily data). The display shows the CMA but not all the way to the Right Hand Edge,

Re: [amibroker] Re: Moving Average

2010-09-01 Thread Dennis Lipter
Flyboy, Yes you understand correctly! It looks like the MA formula is being calculated from an array the size of the visible chart. I need it to calculate beyond the visible chart. I'll search the help file Can I post screen captures? Thanks - Original Message - From:

Re: [amibroker] Re: Moving Average

2010-09-01 Thread Dennis Lipter
Flyboy, Set bars Required did the trick! Thanks for the help. Dennis - Original Message - From: flyboypa30 To: amibroker@yahoogroups.com Sent: Wednesday, September 01, 2010 3:49 PM Subject: [amibroker] Re: Moving Average Dennis, Not sure I understand correctly,

[amibroker] Re: Moving Average

2010-09-01 Thread flyboypa30
Dennis, The idea of a Centered moving average is that it will show you properly the action of the moving average. BUT in order to do so, you will have to give up 1/2 of the length (period) of the moving average on the Hard Right Edge. The only other alternative is to use a Non Centered Moving

Re: [amibroker] Re: Moving Average

2010-09-01 Thread Dennis Lipter
Right you are Flyboy... Now that I have a Centered Moving Average with a blank 1/2 cycle period, I want to fill in the blank period with a Derived Average. The Centered Average is plotted when there is a value for it, otherwise a Derived Average is plotted to fill in the blank period. The

[amibroker] DDE Plug-In

2010-09-01 Thread Dennis Lipter
OEC Trader (Trading Platform) has a Microsoft Excel DDE plug-in. Would this DDE plug-in work with AmiBroker feeding it live market data? Thanks

Re: [amibroker] DDE Plug-In

2010-09-01 Thread Panos Boufardeas
Hi Tomasz does not recommend this way of connection... but yes you can with DDE plug-in. And what about your back fill data? You have to save data from OEC and then import to AMI quickly every time you close your PC At 00:21 02-09-2010 02-09-2010, you wrote: OEC Trader (Trading Platform)

Re: [amibroker] PLOT CHART MOUNTAIN TYPE

2010-09-01 Thread Panos Boufardeas
hi have a look about stylearea will make your mountain trick Plot( C, Close, ParamColor(Color, colorBlack ), ParamStyle(Style,styleNoTitle|StyleArea,maskAll) ); mouse right click / parameters and play with the Style Panos At 11:00 01-09-2010 01-09-2010, you wrote: Hi, I want to plot

Re: [amibroker] DDE Plug-In

2010-09-01 Thread Dennis Lipter
What is the recommended way of connection? What is back fill data? Thanks - Original Message - From: Panos Boufardeas To: amibroker@yahoogroups.com Sent: Wednesday, September 01, 2010 7:40 PM Subject: Re: [amibroker] DDE Plug-In Hi Tomasz does not recommend this

Re: [amibroker] DDE Plug-In

2010-09-01 Thread Panos Boufardeas
http://www.amibroker.com/guide/h_dde.html http://www.amibroker.com/dde.html NO BACKFILL (due to the fact that most DDE sources do not provide backfill) Panos At 04:16 02-09-2010 02-09-2010, you wrote: What is the recommended way of connection? What is back fill data? Thanks - Original

Re: [amibroker] DDE Plug-In

2010-09-01 Thread Dennis Lipter
I read the guidethanks for the links. Still don't know what backfill is. I thought if OEC trader had a DDE plug-in, that the best way to connect to AmiBroker would be via the OEC trader DDE plug-in. - Original Message - From: Panos Boufardeas To: amibroker@yahoogroups.com

Re: [Komunitas AmiBroker] brau( berau coal energy tbk )

2010-09-01 Thread ED!
Klik di menu Symbol - New kemudian masukan symbol saham baru BRAU.JK silakan download datanya di Yahoo Historical dari tanggal IPO sampai hari ini. Rgds, ED!

Re: [Komunitas AmiBroker] brau( berau coal energy tbk )

2010-09-01 Thread sutrisno1960
Pak murty , untuk nambah emiten baru klik symbol , new Smoga membantu Salam Sutrisno Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: murtiabcde sanjaya murtiab...@yahoo.com Sender: amibroker-4-bei@yahoogroups.com Date: Tue, 31 Aug 2010 03:31:51 To:

Re: [Komunitas AmiBroker] IHSG 0831

2010-09-01 Thread asyarief
Workshopnya yg d tangerang kapan lg pak? Thx Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...! -Original Message- From: Hok1 limh...@gmail.com Sender: amibroker-4-bei@yahoogroups.com Date: Tue, 31 Aug 2010 23:49:20 To: hok1-invest...@yahoogroups.com

Re: [Komunitas AmiBroker] IHSG 0831

2010-09-01 Thread swatron07
U Powered by Telkomsel BlackBerry® -Original Message- From: harri3...@yahoo.com Sender: amibroker-4-bei@yahoogroups.com Date: Wed, 1 Sep 2010 09:01:32 To: amibroker-4-bei@yahoogroups.com Reply-To: amibroker-4-bei@yahoogroups.com Subject: Re: [Komunitas AmiBroker] IHSG 0831 Suheng Hok1,

RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940

2010-09-01 Thread Kenzie Sebastian
Setelah dalam dua hari kemaren terkoreksi sampai 770 dan nyaris cut loss, hari ini saham SMSM mulai bergerak naik ke 820. Mudah2an kedepannya terus membaik dan membaik. Let your profit runs... Salam hormat, Kenzie S From: amibroker-4-bei@yahoogroups.com

[Komunitas AmiBroker] Jimberg

2010-09-01 Thread Erianto
Rekan2, ada Ɣªήğ pake formula Jimberg? Gimana caranya kalo mau dipakai utk scan? Mgkn ada Ɣªήğ mau ditambahkan di formula nya? Thanks sebelumnya Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT

Re: [Komunitas AmiBroker] TSPC Berpotensi Menuju 1380 - Closed

2010-09-01 Thread fauzi_chairani
Excellent, Mas Kenzie apakah ini pake Jimberg juga? Karena nggak terlihat jimbergnya... Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: Kenzie Sebastian kenzi...@yahoo.co.id Sender: amibroker-4-bei@yahoogroups.com Date: Wed, 1 Sep 2010 16:37:00 To:

Re: [Komunitas AmiBroker] TSPC Berpotensi Menuju 1380

2010-09-01 Thread fauzi_chairani
Pak GH dan Pak ES, bisa sharing afl muncul panah pada peak dan trough? TQ Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: greenhorn gre3nh...@gmail.com Sender: amibroker-4-bei@yahoogroups.com Date: Wed, 1 Sep 2010 07:14:01 To:

Re: [Komunitas AmiBroker] peak n trough

2010-09-01 Thread Eco Syariah
Mas Liong dan teman2 yang baru gabung di milis, Coba cari di file milis atau di googling... mungkin akan ketemu yang dicari... Link ini salah satu contoh hasil search di file milis: http://finance.groups.yahoo.com/group/amibroker-4-bei/message/3470 masih banyak lagi bahasan Peak Trough di file

Re: [Komunitas AmiBroker] IHSG 0831

2010-09-01 Thread Steven
Pak Hok1 terima kasih banyak untuk jia zi bln septembernya, sangat amat membantu. Steven Sent from my iPad On 1 Sep 2010, at 21:28, Hok1 limh...@gmail.com wrote: Terlampir JiaZi bulan September 2010. Yang perlu diwaspadai namun tdk perlu ditakuti adalah tanggal 6 dan 7 september.

[Komunitas AmiBroker] Fwd: ASK IMPORT

2010-09-01 Thread Yoga Sampurno
resend Alow all, Saya mau tanya. Pada ami versi 5.3 ada tambahan untuk data kita yaitu aux1, aux2. Saya bermaksud untuk memasukkan data frequensi dan value disana. Terlampir data OHLCV dan Freq, Value dalam format txt. Namun kalau kita import satu2 data yang