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] RE: Belajar Prediksi Saham - Closed

2010-08-31 Thread Kenzie Sebastian
Pak fauzi, waktunya 5 hari (1 minggu). Sebelum maksudnya adalah harga awal sebelum diprediksi dan sesudah maksudnya harga setelah 1 minggu. Salam, Kenzie S Powered by Telkomsel BlackBerry® -Original Message- From: fauzi_chair...@yahoo.com Sender: amibroker-4-bei@yahoogroups.com Date:

Bls: [Komunitas AmiBroker] RE: Belajar Prediksi Saham - Closed

2010-08-31 Thread Djaya Pertiwa
Dear Kenzie, Maksud saya, file dibawah ini yang ga bisa dibuka. Salam, Djaya Dari: Kenzie Sebastian kenzi...@yahoo.co.id Kepada: amibroker-4-bei@yahoogroups.com Terkirim: Sen, 30 Agustus, 2010 19:43:01 Judul: RE: [Komunitas AmiBroker] RE: Belajar Prediksi

Bls: [Komunitas AmiBroker] JPFA Membentuk Pola Cup and Handle?

2010-08-31 Thread Djaya Pertiwa
Dear Kenzie, Kok saya ga bisa buka lampirannya kenapa ya ? Tolong pencerahannnya. Salam Djaya. Dari: Kenzie Sebastian kenzi...@yahoo.co.id Kepada: amibroker-4-bei@yahoogroups.com; sa...@yahoogroups.com Terkirim: Sen, 30 Agustus, 2010 21:58:04 Judul:

[Komunitas AmiBroker] Salam kenal

2010-08-31 Thread Tommy Yu -JsxPro.com-
Salam kenal buat semuanya. Salam Cuan, Tommy Yu

[Komunitas AmiBroker] brau( berau coal energy tbk )

2010-08-31 Thread murtiabcde sanjaya
saya murti sanjaya, mau tanya bagaimana cara masukin saham brau (berau coal energy tbk ) ke amibroker,karena di data saya belum ada soalnya baru listing,sebelumnya saya ucapkan banyak terima kasih

Re: [Komunitas AmiBroker] RE: Belajar Prediksi Saham - Closed

2010-08-31 Thread fauzi_chairani
Menurut saya hasilnya excellent, dan kalo boleh dibocorin rahasianya pake senjata apa asik juga, tapi kalau tidak no problem, bravo! Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: Kenzie Sebastian kenzi...@yahoo.co.id Sender:

RE: [Komunitas AmiBroker] RE: Belajar Prediksi Saham - Closed

2010-08-31 Thread Kenzie Sebastian
Pak Fauzi, saya pake jimberg indicator untuk Sinyal Beli dan Jual, plus indicator2 yg lain (RSI, stochastic, acc/dist, dll) sebagai aksesoris. Belum memuaskan karena saya belum mengenal dgn baik indicator ini. Jimberg Indicator, bisa dilihat disini:

[Komunitas AmiBroker] Beda INDF dan CPIN

2010-08-31 Thread greenhorn
Apa bedanya INDF dan CPIN? 5 hari makan indomie bosen juga biarpun dah ganti-ganti rasa ( kare, soto, kaldu...)..hari ke 6 jadi neg juga..mual akhirnya muntah...:D Beda dengan ternak...biar makanannya tiap hari sama, rasanya sama, tetap diembat salam, green

Re: [Komunitas AmiBroker] Beda INDF dan CPIN

2010-08-31 Thread Eco Syariah
Kalau saya lihatnya spt ini: INDF = Non saham syariah ... (saya belum pernah ngalami INDF masuk DES, gak tau kenapa... dugaan saya karena struktur financingnya yg sarat hutang... atau ada aspek lain yg menyebabkannya ndak lolos masuk DES. Sedangkan CPIN... langganan masuk Daftar Efek Syariah...

Re: [Komunitas AmiBroker] JPFA Membentuk Pola Cup and Handle?

2010-08-31 Thread greenhorn
hmakhir tahun 5000 deh salam, green 2010/8/30 Kenzie Sebastian kenzi...@yahoo.co.id JPFA Membentuk Pola Cup and Handle? Jika benar, saham ini akan menuju 3000. ... Best Regards, Kenzie S

[Komunitas AmiBroker] IHSG 0831

2010-08-31 Thread Hok1
Besok, Yang Wood Tiger, kemungkinan IHSG rebound, target 3136. Gambar dibawah ini masih beta version ya, harus ditambah volume, latarbelakang, arrow, money management. Tapi sekilas ini lumayan cocok untuk tipe support and resistance trader. H1 [image: IHSG 0831.png] IHSG 0831.png

Re: [Komunitas AmiBroker] JPFA Membentuk Pola Cup and Handle?

2010-08-31 Thread Hubert Nice
    ah jangan low profile.kalo kira - kira 50,000,00 gimana hingga achir tahun ? --- On Tue, 8/31/10, greenhorn gre3nh...@gmail.com wrote: From: greenhorn gre3nh...@gmail.com Subject: Re: [Komunitas AmiBroker] JPFA Membentuk Pola Cup and Handle? To: amibroker-4-bei@yahoogroups.com Date:

Re: [Komunitas AmiBroker] IHSG 0831

2010-08-31 Thread Adi Noe
Mantap pak hok, peramalan 5 unsurny. Sent from my Noe'sBerry® Good Day Good Luck 4 U All ! -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 Reply-To:

Re: [Komunitas AmiBroker] IHSG 0831

2010-08-31 Thread Hok1
Terima kasih Pak, Saya sudah cukup sering memakai 5 unsur ini, karena dasarnya adalah analisa kuantitatif, kebetulan kelinci percobaan saya IHSG. Jadi cara kerjanya sbb : Saya terjemahkan kalendar matahari menjadi kalendar soli-lunar khas Tiongkok. Ternyata cukup bagus korelasinya, misalkan Yang

RE: [amibroker] Re: Open Interest Field

2010-08-31 Thread TA
TJ, by chance if you see message would you please comment. TIA From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of TA Sent: Monday, August 30, 2010 7:53 PM To: amibroker@yahoogroups.com Subject: RE: [amibroker] Re: Open Interest Field Hi Ed Thanks, for

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Tomasz Janeczko
Hello, Your guess is invalid. OI field is now floating point and has no such limit. (Actual limit is 10, or 10^37) The reason why his import has failed is because OpenInterest is a part of QUOTATION and he must NOT use $NOQUOTES 1 option. Best regards,

[amibroker] Buy at open

2010-08-31 Thread Franca Zelbù
Well, by default amibroker use the close price to buy in the back tests. How can I use open price?

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Tomasz Janeczko
Hello, Open Interest is considered as PART of quotation, therefore can NOT be imported with $NOQUOTES 1 Since it is a PART of quotation, it has to come *together* with at least CLOSE price. So your data file should contain DateTime, Close, OpenInterest fields at minimum. Best regards,

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Keith McCombs
TA -- The error message referring to close price is very suspicious. Does your data base already have a an 'A' ticker, and if so does it have a positive close price? I don't know that the exists of a ticker with a close price. But, maybe -- Keith On 8/31/2010 02:05, TA wrote:

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Keith McCombs
TJ -- IMHO, this type of information should be in the User's Manual. -- Keith On 8/31/2010 06:43, Tomasz Janeczko wrote: Hello, Open Interest is considered as PART of quotation, therefore can NOT be imported with $NOQUOTES 1 Since it is a PART of quotation, it has to come *together* with

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Tomasz Janeczko
Hello, It is already. Check the description of $NOQUOTES in the manual. Best regards, Tomasz Janeczko amibroker.com On 2010-08-31 16:55, Keith McCombs wrote: TJ -- IMHO, this type of information should be in the User's Manual. -- Keith On 8/31/2010 06:43, Tomasz Janeczko wrote: Hello,

[amibroker] Ranking Many Columns

2010-08-31 Thread vishveshchauhan
Hello group, I have piece of code which throws output as ROC of last 50 days. Now I want to have output as sorted on every column based on rank. For an Ex. if ROC is highest it should be rank 1 and if last then 50. Each column should display rank instead of ROC. Any help highly appreciated

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Keith McCombs
TJ -- I just did a word search in .pdf manual, 5.20. I could not find where it said that either that Open Interest is considered as PART of quotation. Or that at least CLOSE price is required. My searches included: $NOQUOTES openinterest at least close price part of quotation I also

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Tomasz Janeczko
Hello, Poor searching. As I wrote, search for $NOQUOTES and read what is written there http://www.amibroker.com/guide/d_ascii.html It is clearly written: $NOQUOTESSwitch quotation data mode 0 - (default) accept only quotation data (AmiBroker checks for non-zero prices and valid dates) 1

Re: [amibroker] Buy at open

2010-08-31 Thread Franca Zelbù
Thanks, can I do it programly? Da: Herman psy...@magma.ca A: Franca Zelbù amibroker@yahoogroups.com Inviato: Mar 31 agosto 2010, 16:30:51 Oggetto: Re: [amibroker] Buy at open open Backtester settings and change Close to Open. herman Well, by

Re: [amibroker] Buy at open

2010-08-31 Thread Rick Osborn
have you checked BuyPrice in the help files BuyPrice = Open; Best Regards Rick Osborn From: Franca Zelbù fz...@yahoo.com To: amibroker@yahoogroups.com Sent: Tue, August 31, 2010 1:33:22 PM Subject: Re: [amibroker] Buy at open Thanks, can I do it

[amibroker] Re: Performance

2010-08-31 Thread Mike
Ok, I think I understand what you are referring to now. If you are referring to the Charts page of the backtest report (i.e. from Statistics | Charts | Trades | Formula | Settings | Symbols), then yes, most of those charts are measuring changes of equity. The same trade taken over and over will

[amibroker] Question about TimeFrameExpand inWeekly and the Weekly periodicity setting

2010-08-31 Thread john10987654321
If I have an Ambroker formula file that consists mainly of variables that are framed in TimeFrameExpand inWeekly -- but contains a few daily variables -- do I under settings for periodicity set for Daily or Weekly. Presumably, I am expanding into Weekly from daily in the script, so the

[amibroker] coding

2010-08-31 Thread rpedicelli
i need a lil help with coding. Trying to to develop an indicator that satisfies these conditions: 1. today's close is greater than today's open by 1% or more 2. today's volume is greater than the biggest volume Down Day during the past 10 days. Thanks RP

[amibroker] New RMO of Metastock 11

2010-08-31 Thread money bulls
hi Have any one coded afl for new RMO of metastock 11. if yes, plez share

[amibroker] Problem in Position sizing in Backtesting

2010-08-31 Thread Robert Mitchum
Hi everybody I am new to trading and to Amibroker. I was trying to replicate Seykota's Simple Exponential Crossover system in amibroker Backtester but I have troubles in sizing the correct number of Shares: Amibroker seem not to use the figures that I calculate in AFL. I am using Amibroker

RE: [amibroker] Re: Open Interest Field

2010-08-31 Thread TA
Thanks for help. I wish OI was not part of quotation. From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Tomasz Janeczko Sent: Tuesday, August 31, 2010 3:44 AM To: amibroker@yahoogroups.com Subject: Re: [amibroker] Re: Open Interest Field Hello, Open

[amibroker] Re: 52 week high

2010-08-31 Thread prasantaroy36
HI VOYEGER, Sorry to inform you problem is same as said earlier. Thanks --- In amibroker@yahoogroups.com, inquisitive voyager inquisitive.voya...@... wrote: make sure selector line is on the last bar to get the desired result. cheers On Mon, Aug 30, 2010 at 11:43 PM, prasantaroy36

[amibroker] Report/Stats for individual stocks

2010-08-31 Thread Ronen
Is there a way to backtest a group of stocks, each individually, and then get that stats for each stock (i.e. Sharpe, win%, Loss%, #trades)? For example, if my backtest period is 5 years, run the backtest for stock A for the 5 year period, calculate the stats and then move to stock B. So, in

Re: [amibroker] Re: Open Interest Field

2010-08-31 Thread Keith McCombs
TJ -- Yes, I did read that; many times over. 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. Nor does it say that Close must always be present. Is Open quotation data? If so, why

Re: [amibroker] Report/Stats for individual stocks

2010-08-31 Thread Keith McCombs
Ronen -- Yes. Most of the metrics you want are not displayed by Back Test, but by Optimize. But that's Ok. I just tried this with only two symbols: run = Optimize(Runs, 1, 1, 2, 1); // make max the number of stocks you wish to test if((Name() == QLD AND run == 1) OR (Name() == QID AND

RE: [amibroker] Re: Open Interest Field

2010-08-31 Thread TA
Thanks Kieth. From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Keith McCombs Sent: Tuesday, August 31, 2010 8:29 PM To: amibroker@yahoogroups.com Subject: Re: [amibroker] Re: Open Interest Field TJ -- Yes, I did read that; many times over. It does not say

[amibroker] Re: Help with Swing Chart

2010-08-31 Thread aarbee60
Hi Reinsley, Tks for the reply. This is not what I was looking for. Tomasz has provided a good swing chart code and all I am looking for is a way to draw straight lines from the swing low points and swing high points identified in Tomasz's code. I would really appreciate if someone could post

Re: [amibroker] Re: 52 week high

2010-08-31 Thread inquisitive voyager
strange! its working fine on my end. On Wed, Sep 1, 2010 at 3:59 AM, prasantaroy36 prasantaro...@yahoo.comwrote: HI VOYEGER, Sorry to inform you problem is same as said earlier. Thanks --- In amibroker@yahoogroups.com amibroker%40yahoogroups.com, inquisitive voyager

Re: [amibroker] coding

2010-08-31 Thread inquisitive voyager
it was not clear what u exactly mean by biggest volume Down Day - else Filter=*C*1.01**O* *AND* *V*Ref(HHV(*V*,10),-1); On Sun, Aug 29, 2010 at 7:22 PM, rpedicelli rpedice...@yahoo.com wrote: i need a lil help with coding. Trying to to develop an indicator that satisfies these

RE: [amibroker] Re: Open Interest Field

2010-08-31 Thread TA
Keith, this doesn't work for. Were you able to test it? From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Keith McCombs Sent: Tuesday, August 31, 2010 8:29 PM To: amibroker@yahoogroups.com Subject: Re: [amibroker] Re: Open Interest Field TJ -- Yes, I did

Bls: [Komunitas AmiBroker] RE: Belajar Prediksi Saham - Closed

2010-08-30 Thread HKKA Permana
Salam kenal pa Kenzie.. Mau tanya dong,  ini  prediksi  sahamnya  sekedar mencapai  target price  atau ada  time frame  berapa  lama ? salam,   Dari: Kenzie Sebastian kenzi...@yahoo.co.id Kepada: amibroker-4-bei@yahoogroups.com Terkirim: Sab, 28 Agustus, 2010

[Komunitas AmiBroker] ASK IMPORT

2010-08-30 Thread mine_hudson
Kok ga masuk2 ya, apa gr2 pake thunderbird. Kirim ulang pake web yahoo deh: Original Message Subject:ASK IMPORT Date: Fri, 27 Aug 2010 16:25:38 +0700 From: Yoga Sampurno yogasampu...@gmail.com To: amibroker-4-bei@yahoogroups.com Alow all, Saya mau tanya. Pada

RE: [Komunitas AmiBroker] RE: Belajar Prediksi Saham - Closed

2010-08-30 Thread Kenzie Sebastian
Saya coba memprediksi dalam frame satu minggu, biar ga kelamaan. Idealnya mengikuti sinyal SELL dan BUY dari sistem yang ada. Masih mau menguji sistem yang ada. Salam kenal juga pak Permana. From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-...@yahoogroups.com] On Behalf

Re: [Komunitas AmiBroker] RE: Belajar Prediksi Saham - Closed

2010-08-30 Thread fauzi_chairani
Mas Kenzie maksud sebelum dan sesudah itu apa ya? Dan jaraknya berapa hari? Thanks 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: Sat, 28 Aug 2010 09:12:34 To:

Re: [amibroker] Re: Formula Help Needed [1 Attachment]

2010-08-30 Thread Edward Pottasch
Jeff, over the last year I was able to remove a lot of this exit looping from my AFL codes, which makes it faster. With this specific problem I do not see how it can be done using array calculations only. However, when using exit loops it makes it very easy to add everyting you like. Added

Re: [amibroker] Help with Swing Chart

2010-08-30 Thread reinsley
Hi, This example can help you. Best regards |// ZigZag Retracement // Percent and Bar numbers _SECTION_BEGIN(ZigZag Retracement); *function* GetXSupport(Lo, Percentage, Back) { *return* ((*BarCount* - 1) - LastValue(TroughBars(Lo, Percentage,Back))); } *function* GetYSupport(Lo, Percentage,

Re: [amibroker] desperately need help forgetting pop up window alert

2010-08-30 Thread reinsley
A similar way with interpretation windows http://www.amibroker.org/userkb/2007/07/14/debugview-vs-interpretation-window/ Best regards Le 28/08/2010 20:14, amit k a écrit : plz help i m looking for pop window formula which i can add to my formulae...so whenever i use ita pop

Re: [amibroker] Re: 52 week high

2010-08-30 Thread reinsley
Hi, Here is something you could adapt Best regards |// last quote GFX display mylast = NumToStr( *C*, 1.1 ); mychange = GetRTData( change ) ; percentchange = ( ( *C* / ( *C* - mychange ) ) - 1 ) * 100; mypercentchange = NumToStr( percentchange , 1.2 ) + %; GfxSetOverlayMode( 1 );

Re: [amibroker] How many open charts do you use

2010-08-30 Thread reinsley
Main windows with 2 charts with two panes, all empty sheets and 3 floating windows with two panes each, all empty sheets Le 28/08/2010 15:53, Tomasz Janeczko a écrit : Hello, I have a question for AmiBroker users, especially those using it in real-time: how many chart windows do you have

[amibroker] Re: Definitive Guide to AFL

2010-08-30 Thread Mike
Herman made a typo in his response, it should have read Howard Bandy, not Howard Bundy. You can review the content of his books here: http://www.blueowlpress.com/#books Mike

Re: [amibroker] Definitive Guide to AFL

2010-08-30 Thread Keith McCombs
The help file is also available in .pdf format, Amibroker 5.20 User's Guide. http://amibroker.com/download.html#amibroker (third item on same page as program download) Hopefully there will eventually be an updated version to 5.30. On 8/30/2010 03:51, Herman wrote: there are several books by

Re: [amibroker] 52 week high [1 Attachment]

2010-08-30 Thread inquisitive voyager
Is this u wanted? On Sun, Aug 29, 2010 at 11:45 PM, prasantaroy36 prasantaro...@yahoo.comwrote: Hi, i want to plot as text 52 week high date. So, what will be the afl logic ? Pl,help. Thanks

[amibroker] Line between 2 points

2010-08-30 Thread ID
Hello, how to plot line between 2 points? We have a High at 30,50 dated X i we have a Low at 25,00 dated Y. How to connect by line High with Low? Please help. Thanks. Dominik

[amibroker] Re: Line between 2 points

2010-08-30 Thread Rob
check gfx functions. --- In amibroker@yahoogroups.com, ID tomcz...@... wrote: Hello, how to plot line between 2 points? We have a High at 30,50 dated X i we have a Low at 25,00 dated Y. How to connect by line High with Low? Please help. Thanks. Dominik

[amibroker] Re: 52 week high

2010-08-30 Thread prasantaroy36
Hi, Thanks to all . --- In amibroker@yahoogroups.com, inquisitive voyager inquisitive.voya...@... wrote: Is this u wanted? On Sun, Aug 29, 2010 at 11:45 PM, prasantaroy36 prasantaro...@...wrote: Hi, i want to plot as text 52 week high date. So, what will be the afl logic ?

[amibroker] Re: 52 week high

2010-08-30 Thread prasantaroy36
Hi, Thanks to all. Voyeger by your code i am able to see lifetime high date but i want only 52 wek high date. I have set 260 day period for 52 week high but chart shown lifetime high date. Pl, help me. Thanks --- In amibroker@yahoogroups.com, inquisitive voyager inquisitive.voya...@...

[amibroker] Re: How many open charts do you use

2010-08-30 Thread asia_wanderer
Rob Perhaps for you it may not worthwhile but it did give me an edge. When I got ill last year I moved to other markets and EOD timeframes with an intraday entry / exit. Much more relaxed. AW --- In amibroker@yahoogroups.com, Rob sidharth...@... wrote: Asia Wanderer, AmiBroker can be

[amibroker] Re: FW: 64 bit Results

2010-08-30 Thread bingk66
Hi TJ, If these refreshes are independent, is there anyway I can deactivate the setting via preferencesIntraday and only use RequestTimedRefresh(). The only reason I am asking is that I like my charts to refresh every 2 mins, but the setting for preferencesIntraday limits the settings from

Re: [amibroker] Re: FW: 64 bit Results

2010-08-30 Thread Tomasz Janeczko
Hello, You can't. Internal refreshes are needed just because Windows from time to time will ask program to repaint its window. AmiBroker will repaint using internal off-screen buffer bitmap, BUT... if data has changed or zoom has changed, or data has changed it will need to regenerate bitmap

[amibroker] Open Interest Field

2010-08-30 Thread TA
I am trying to import an ascii file with following data to the Open Interest field: A,8/27/2010,34600 AA,8/27/2010,102000 The following is my format file instructions. It keeps on failing. Do you see why? TIA $FORMAT TICKER, Date_USA, OPENINT $SKIPLINES 0 $NOQUOTES 1

[amibroker] Re: Open Interest Field

2010-08-30 Thread Ed H
My WAG (Wild Ass Guess) would be that the OI field is a fixed point 32 bit number (same as volume) which has a max value of 4 billion. The AA stock is already at 1 billion. Try cutting off 3 zeros from each OI entry and see if that helps. Try adding $BREAKONERROR 1 to the commands in

RE: [amibroker] Re: Open Interest Field

2010-08-30 Thread TA
Hi Ed Thanks, for the reply. Initially, I was thinking the same that the number might be too big. However, I input it manually it takes it. If I set $NOQUOTES to 1 the $debug does produce any error but it also doesn't import the data. If I set $NOQUOTES to 0 then it produce the following

[amibroker] Re: Hindenburg Omen

2010-08-30 Thread soni67c
Hello Paul Ho, even i don't trade US stocks , and i searched for this indicator for AB , but didn't succeed ,so with the following criteria . we have to do on owr own , Conditions for the Omen That the daily number of NYSE new 52 Week Highs AND the daily number of new 52 Week Lows must both

Re: [amibroker] Re: 52 week high

2010-08-30 Thread inquisitive voyager
make sure selector line is on the last bar to get the desired result. cheers On Mon, Aug 30, 2010 at 11:43 PM, prasantaroy36 prasantaro...@yahoo.comwrote: Hi, Thanks to all. Voyeger by your code i am able to see lifetime high date but i want only 52 wek high date. I have set 260 day

[Komunitas AmiBroker] RE: Belajar Prediksi Saham - Closed

2010-08-29 Thread Kenzie Sebastian
Lookback Belajar Prediksi Saham Minggu kemaren, belajar memprediksi saham, hasilnya kurang memuaskan. Ada 2 saham yang rugi dan ada 2 saham naik cuma 1 sampai 2 poin. Ternyata susah memprediksi saham, masih perlu bekerja keras untuk belajar. Mungkin perlu sekali-kali ikut kursus TA. BKDP (Change:

[Komunitas AmiBroker] Momentum Snake 27 AuG 2010 - PTBA DJI JKSE TLKM ASII CPIN SCMA

2010-08-29 Thread Eco Syariah
Dear Saham Syariah Lovers, Selamat menunaikan ibadah puasa Ramadhan... sahur---sahur...sahur... eeh... imsak...imsak... imsak... !!! Just sharing my view... bukan anjuran beli/jual... dan PTBA cuma sebagai contoh, yang lain bisa dihitung sendiri Reward Risk nya. Kalau menurut saya PTBA masih

<    1   2   3   4   5   6   7   8   9   10   >