[amibroker] short/cover only system

2010-08-23 Thread learnerst
I am developing a simple system based on a pattern to trade. The trade only involves short/cover but no buy/sell. However amibroker says an error: missing buy/sell assignments during backtesting. How do I get around with this problem? Do it always requires buy/sell? I am just a beginner.

[amibroker] Market value at each signal for each ticker

2010-08-23 Thread Ju
Hi, I have a system which longs and shorts 5 ETFs, and I want to make the system's holding market-neutral. I need to know each ETF's market value if a new signal is fired. How to achieve this in back test? I can get each ETF's positions size. How to get each ETF's prices? C[bar] looks return

Re:: [amibroker] Amibroker multiple installs

2010-08-23 Thread Manoranjan Mudra
Yes it is possible,u can try. On Thu, 19 Aug 2010 15:29 IST jooleanlogic wrote: Sorry I'm sure this has probably been answered before but Yahoo keeps giving me Search server is busy (code=300) when searching. Very annoying. Anyway, I want to install 5.3 but also keep 5.2 running as I need them

[amibroker] HEAT

2010-08-23 Thread Oliver
Hello All! Does anyone of you have a code for calculating HEAT in a postfolio, i.e. using HEAT as a limit to the amount of positions you can hold in a portfolio while back-testing? Thanks Oliver

[amibroker] Report

2010-08-23 Thread tstud...@gmail.com
Hi to all, i'm new. I'm trying to understand this interesting backtest software. First i have a question about Amibroker results report. Is possible to have a report similar to actual report, but with all metrics calculated without initial equity. I only want percentage results of the systems.

[amibroker] Request - Conversion Metstock code to AFL.

2010-08-23 Thread andrewgolotnik
Could somebody help me to convert this Metastock code...: MACD MS Look Ahead http://www.systems4trading.com/formula,635,metastock,macd-ms-look-ahead.html [...] x:=0.15; y:=0.075; a:=If(Cum(1)=1,C,PREV*(1-x)+C*x); b:=If(Cum(1)=1,C,PREV*(1-y)+C*y); a:=a*(1-x); b:=b*(1-y); top:=b-a; {C required

[amibroker] Negative Positive Volume

2010-08-23 Thread f7273ms
Greetings all, I want to Calculate the cumulative Negative Positive Volume Depending to BoughtShares SoldShares Best, fawaz

Re: [amibroker] Re: Don't use AmiQuote ver 2.12 for Fundamental Data

2010-08-23 Thread Tomasz Janeczko
Hello, AmiQuote is just the specialized web browser (downloader) that does NOTHING but issue HTTP request and download data from Yahoo. Yahoo Basic and Extended information is a result of TWO different requests coming from two different pages. Yahoo Basic information is coming from Download

Re: [amibroker] short/cover only system

2010-08-23 Thread Prashanth
Click on Settings in Automatic Analysis and change Positons from Long to Short. Cheers Prashanth - Original Message - From: learnerst learne...@yahoo.com To: amibroker@yahoogroups.com Sent: Friday, August 20, 2010 2:09 AM Subject: [amibroker] short/cover only system I am developing a

[amibroker] Re: short/cover only system

2010-08-23 Thread amiuser999
Yes I think it always requires a buy/sell arguement which is easy to fix, simply add: buy=sell=0; --- In amibroker@yahoogroups.com, learnerst learne...@... wrote: I am developing a simple system based on a pattern to trade. The trade only involves short/cover but no buy/sell. However

[amibroker] Re: Point Figure afl in AmiBroker

2010-08-23 Thread bistrader
Thanks. Looks like what I was looking for but will have to study. Thanks again. --- In amibroker@yahoogroups.com, hagus99se hans.gustavs...@... wrote: --- In amibroker@yahoogroups.com, bistrader bistrader@ wrote: Is there a Point Figure afl that comes with AmiBroker? If

[amibroker] Re: Point Figure afl in AmiBroker

2010-08-23 Thread bistrader
Thanks --- In amibroker@yahoogroups.com, reinsley reins...@... wrote: |// Market Profile // http://www.inditraders.com/showthread.php?t=1526highlight=market+profilepage=20 _SECTION_BEGIN(MarketProfile);

[amibroker] Optimizer target with genetic optimization

2010-08-23 Thread DougOriard
When running one of the genetic optimizers, like cmae or trib, is it possible to change the optimization target from CAR/MDD to just % profit, or other target value? CAR/MDD is too heavily biased on minimizing MDD. It would be better to optimize for CAR*(100 - MDD), where MDD is taken as

RE: [amibroker] Re: Don't use AmiQuote ver 2.12 for Fundamental Data

2010-08-23 Thread TA
TJ I don't know if you are familiar with finviz.com or not. They seem to have the same extended financial information as yahoo and some more. I don't know if it make sense to download the fundamental data from this site or not? Just for your info. It is the best site for financial information

[amibroker] Re: customized walk forward backtesting possible?

2010-08-23 Thread adexie
Howard, I would love to have access to OS trade list and stats too. I was going through the customized backtest doc, I might be able to achieve what I was hoping to do -- manipulating the parameter from optimization in WF backtest, but it's very difficult to implement. Thanks for all your

[amibroker] AmiQuote 2.13 released

2010-08-23 Thread Tomasz Janeczko
Hello, A new version of AmiQuote has been released: http://www.amibroker.com/devlog/2010/08/23/amiquote-2-13-released/ Best regards, Tomasz Janeczko amibroker.com

Re: [amibroker] Re: Don't use AmiQuote ver 2.12 for Fundamental Data

2010-08-23 Thread Tomasz Janeczko
Hello, FYI: solved in AmiQuote 2.13 Best regards, Tomasz Janeczko amibroker.com On 2010-08-23 18:06, Tomasz Janeczko wrote: Hello, AmiQuote is just the specialized web browser (downloader) that does NOTHING but issue HTTP request and download data from Yahoo. Yahoo Basic and

[amibroker] Re: Optimizer target with genetic optimization

2010-08-23 Thread radmobile_radmobile
This can be achieved through the custom backtester interface. See: http://www.amibroker.com/kb/2008/05/19/historical-portfolio-backtest-metrics/ -RM --- In amibroker@yahoogroups.com, DougOriard d...@... wrote: When running one of the genetic optimizers, like cmae or trib, is it possible to

[amibroker] Re: Optimizer target with genetic optimization

2010-08-23 Thread Mike
Go to the Automatic Analysis window, click on the Settings... button, change to the Walk Forward tab, change the value for Optimization target. Mike --- In amibroker@yahoogroups.com, DougOriard d...@... wrote: When running one of the genetic optimizers, like cmae or trib, is it possible to

[amibroker] Re: Report

2010-08-23 Thread JEFF F
If I understand your request correctly, you can run a Backtest, then click on Report / Charts, and chart #3 is a profit table broken down by month, and given in percentages only. --- In amibroker@yahoogroups.com, tstud...@... tstud...@... wrote: Hi to all, i'm new. I'm trying to understand

[amibroker] Trade closed Re: Simple Pair Trading System

2010-08-23 Thread Ju
I experience another issue when do pair trading for long period: a trade is closed if it lose 100% the money. For example, if I short at 20 and long SPY, when goes up to 40. The short will be closed. How to avoid this, and keep the short even though it loses 100%? --- In

[amibroker] Re: short/cover only system

2010-08-23 Thread amiuser999
Hey Prashanth that works too, thanks, I thought sometime in the past you still had to specify buy/sell to avoid the error but perhaps this was changed or maybe I'm just confused but either solution will work ;) --- In amibroker@yahoogroups.com, Prashanth prash454...@... wrote: Click on

RE: [amibroker] AmiQuote 2.13 released

2010-08-23 Thread TA
Thanks Tomasz, this release fixed my issues. From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Tomasz Janeczko Sent: Monday, August 23, 2010 12:27 PM To: amibroker@yahoogroups.com Subject: [amibroker] AmiQuote 2.13 released Hello, A new version of

[amibroker] Smoothed rate of change indicator

2010-08-23 Thread Dennis O'Flynn
Can anyone help with the Amibroker equivalent of the Incredible Charts Smoothed Rate of Change indicator? Their's is apparently based on an article by Fred Schutzman in Futures magazine, April 1991. It first calculates a 13 day exponential MA of closing price, then calculates a 21 day rate of

Re: [amibroker] Smoothed rate of change indicator

2010-08-23 Thread Ara
Try EMAclose = EMA(Close,13); ROCxma = ROC(EMAclose,21); On 08/23/2010 7:18 PM, Dennis O'Flynn wrote: Can anyone help with the Amibroker equivalent of the Incredible Charts Smoothed Rate of Change indicator? Their's is apparently based on an article by Fred Schutzman in Futures

[amibroker] Re: Smoothed rate of change indicator

2010-08-23 Thread WiseStockTrader
You can also get better results by using double smoothing but with less periods. EMAclose = EMA(Close,5); ROCxma = EMA(ROC(EMAclose,21), 5); Plot(ROCxma, _DEFAULT_NAME(), colorRed, styleLine); --- In amibroker@yahoogroups.com, Ara ara1.kaloust...@... wrote: Try EMAclose = EMA(Close,13);

RE: [amibroker] Re: Optimizer target with genetic optimization

2010-08-23 Thread Matthias K.
Hi, Mike is right, just change the target in the settings/walk-forward-tab. Anyways, you can design your custom metric, too, this is a very valuable feature, just google amibroker add custom metric. For me, I played along with the max. k-ratio and min. ulcer-index. My daytrading systems on

RE: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread Kenzie Sebastian
Terima kasih pak Colonel untuk feedback-nya. Ini berharga untuk proses pembelajaran saya. Sabtu kemaren, saya coba2 membuat sebuah sistem di amibroker dan menyelesaikannya, yang rencananya akan (harus) menjadi panduan saya berinventasi. Karena itu saya memberanikan diri men-share di milis ini,

[Komunitas AmiBroker] (unknown)

2010-08-22 Thread zainaltahir
Lebih baik fokus pada pergerakan group bakrie, yang kini rata-rata sdh oversold. Coba ketika BUMI misalnya jeblok hingga di bawah 1300 tgl 19 agustus, kita punya keberanian untuk masuk, tidak sampai sehari cuannya 15 persen. Nanti kita terbelalak ketika BUMI tembus 1500. Sent from BlackBerry®

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread Cuplis
Sekedar sharing soal INDF Sy coba memberi potret... Dari 6 Teori dow... Ada yg disebut mayor trend have 3 phases... 1 fase akumulasi 2 up trend 3 down trend INDF mulai Juni fase uptrend, 3 agustus ada tekanan jual dgn volume yg sangat besar selama 3 hari berturut2 ... 4100 kemarin2 telah

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread Novice Trader
Numpang nimbrung Kalo saya coba menganalisa ...saya masih menunggu dan saya baru berani masuk kalo sudah di range 4250-4300 dengan target di 4425 atau bisa lebih lagi di 4725.. Memang kita semua dapat melihat pergerakan harga / chart dari kacamata yang berbeda beda sangat tergantung dari

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread colonel262
Sip...saya catat lagi.kalau besok ada di range 4250-4300 ,maka saya catat anggap buy 4275 utk simulasi lagi. Kalau buy 4275 maka kita anggap stoploss -2 % ada di 4175. Nanti jumat kita bahas sama-sama lagi. Untuk saya pribadi, saya simulasi TIDAK BUY saham ini. INDF kalau mau naik hanya punya

Re: [Komunitas AmiBroker] - Oprekan Snakes+Fractal+Fibo-Terinspirasi utk buat jadinya - SNAKE ON THE WATER

2010-08-22 Thread sAThya®
Mas Eco ,, Snake nya ok juga tuh ,,, jadi terinspirasi utk buat tadinya mau tidur siang... eh ... jadi pingin juga punya SNAKE sendiri :-D ,, blum tau persis sama dgn punya master2 disini... klu yg ini versi DeepPurple Snake on the Water ,,, bukan smoke ... Rgdz Sathya

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread Kenzie Sebastian
Baik pak Colonel, minggu depan Saya akan update kembali data di sistem yang saya buat dan akan saya share kembali. Terima kasih. Powered by Telkomsel BlackBerry® -Original Message- From: colonel...@yahoo.com Sender: amibroker-4-bei@yahoogroups.com Date: Sun, 22 Aug 2010 06:54:16 To:

Re: [Komunitas AmiBroker] Re: Trading Plan

2010-08-22 Thread isfandi2001
@pak fauzy Sdh saya jawab dan posting permintaan anda pd subject/judul smooth ADX. saya sdh lampirkan 2 afl sekaligus tp gak tau knp blm masuk ya.. salam, Isfandi From: fauzi_chair...@yahoo.com fauzi_chair...@yahoo.com To: amibroker-4-bei@yahoogroups.com

Re: [Komunitas AmiBroker] - Oprekan Snakes+Fractal+Fibo-Terinspirasi utk buat jadinya - SNAKE ON THE WATER

2010-08-22 Thread Eco Syariah
Mas Sathya... keknya gak rugi tuh gak tidur siang... DeepPurple Snakes nya manstab... Versi ane kalau lihat di weekly seperti cacing... sebaliknya kalau di hourly kek naga... hahaha... Thanks, ES 2010/8/22 sAThya® prassat...@yahoo.com Mas Eco ,, Snake nya ok juga tuh ,,, jadi terinspirasi

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread greenhorn
Kalau saya lebih suka nunggu aja...takut kelamaan duduk keretanya blom berangkat... Menurut saya kecenderungannya justru melemah, saya lagi nunggu2 di area 3700-3850.. Kalaupun naik prediksi saya kira2 di 4350-4400 lalu balik lagi ke ke bawah..., Jadi strategi saya adalah kalau naik saya beli di

Re: [Komunitas AmiBroker] - Oprekan Snakes+Fractal+Fibo-Terinspirasi utk buat jadinya - SNAKE ON THE WATER

2010-08-22 Thread nurhadi wiyono
Mas Eco, Mantabs nih snakenya,gak ada matinya pokoke aflnya :), klo snake blue dan grey yang bisa mendahului bar itu pakai Function apa yah ?? suwun mas. 2010/8/22 Eco Syariah esyar...@gmail.com Mas Sathya... keknya gak rugi tuh gak tidur siang... DeepPurple Snakes nya manstab... Versi

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread tobeno
Greenhorn: Menurut saya kecenderungannya justru melemah, saya lagi nunggu2  di area 3700-3850. Kalo saya ga perlu nunggu. Start BUY dengan strategi berikut: 1 lot di 4.100 2 lot di 4.000 4 lot di 3.900 8 lot di 3.800 Total 15 lot di 3.873 (deket2 dengan rangenya Greenhorn) Sebaliknya, kalo

Bls: [Komunitas AmiBroker] - Oprekan Snakes+Fractal+Fibo-Terinspirasi utk buat jadinya - SNAKE ON THE WATER

2010-08-22 Thread Djaya Pertiwa
Pa sAthya, saya cuma mengagumi karya2 ahhli Afl pa Sathya, selalu significant. Kalo berkenan, bisas share AFL nya Pa. Tks, seblumnya, Djaya P. Dari: sAThya® prassat...@yahoo.com Kepada: amibroker-4-bei@yahoogroups.com Terkirim: Ming, 22 Agustus, 2010

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread hexamail
Kalau SMGR gmn pak? Thx.. Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...! -Original Message- From: greenhorn gre3nh...@gmail.com Sender: amibroker-4-bei@yahoogroups.com Date: Sun, 22 Aug 2010 21:31:11 To: amibroker-4-bei@yahoogroups.com Reply-To:

[Komunitas AmiBroker] Tanya Apakah Milis ini dimoderasi?

2010-08-22 Thread tobeno
Saya reply tapi tidak delivered, sudah hampir 1 jam. tobeno Everything that doesn't kills us, will only make us stronger Apabila membutuhkan software AmiBroker, Realtime Intraday Data Pelatihan silahkan kontak : Dendo Valentino | Cell : 08159304868 |

Re: [Komunitas AmiBroker] - Oprekan Snakes+Fractal+Fibo-Terinspirasi utk buat jadinya - SNAKE ON THE WATER

2010-08-22 Thread Eco Syariah
Pakai Displace... bisa majuin atau mundurin apa saja yang kita plot... Try this contohnya: Displace = Param(Displace by, -2, -10, 10, 1); EMA5 = EMA(C, 5); Plot(EMA5,EMA5Displace,colorRed, styleLine,0,0,Displace); Regards, ES 2010/8/22 nurhadi wiyono nh8wiy...@gmail.com Mas Eco, Mantabs

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread Kenzie Sebastian
Terima kasih pak Cuplis untuk potret theory DOW-nya, telah menambah wawasan saya dan juga nasehat strategy berperangnya. Banyak cabang dari TA, terus terang membuat saya bingung mempelajari yang mana... Hehehe. Saya baru belajar yang basic, bollinger, MA, EMA, oscillator, divergence, dan akan

Re: [Komunitas AmiBroker] Paket Merdeka AmiBroker Batch 29 (plus free pelatihan)

2010-08-22 Thread And_ Sut
Pak Dendo, saya kan beli AB aslinya bulan Juli 2010 dan belum ikut pelatihan, bisa ikut yg lain kali ga pak. Soalnya tgl 28 ga bisa ke Jakarta. Lokasi sy di Semarang. Terus mau tanya lagi pak, gimana caranya nambahin data kalo ada saham yang baru listing spt misalnya BRAU yg baru aja listing

Re: [Komunitas AmiBroker] - Oprekan Snakes+Fractal+Fibo-Terinspirasi utk buat jadinya - SNAKE ON THE WATER

2010-08-22 Thread Eco Syariah
Stabil mas Sathya... masih terlihat seperti DeepPurple Snakes on Water yg di daily... Mungkin Snakes saya harus diadjust... supaya stabil juga... Kalau yang mirip Horse ada tuh... Stochastic yang kemarin ditanyain mas Dandytra... Mas Dandytra mungkin bersedia menjelaskan maksudnya ? //

Re: [Komunitas AmiBroker] IHSG 20 AuG 2010 - Oprekan Snakes+Fractal+Fibo

2010-08-22 Thread Eco Syariah
Thanks ... bisa ikut ngeramein si Snakes... 2010/8/22 muhammad anas muhanasjam...@yahoo.co.id Monggo Pak Eco dibuat yang menarik dan yang lebih utama bila lebih memudahkan Ini ada modifikasi sedikit usulannya Pak Thjia Lioe --- Pada *Ming, 22/8/10, Eco Syariah esyar...@gmail.com*

RE: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread Timur Langit
Pak Tobeno, level CL nya di mana? From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-...@yahoogroups.com] On Behalf Of tobeno Sent: Sunday, August 22, 2010 9:49 PM To: amibroker-4-bei@yahoogroups.com Subject: Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550 Greenhorn:

Bls: Bls: [Komunitas AmiBroker] - Oprekan Snakes+Fractal+Fibo-Terinspirasi utk buat jadinya - SNAKE ON THE WATER

2010-08-22 Thread Djaya Pertiwa
Dear pa Sathya, Terima kasih atas, sarannya, saya akan coba coba2. Kallo ada kesulitan,nanti saya tanya. Salam, Djaya. Dari: sAThya® prassat...@yahoo.com Kepada: amibroker-4-bei@yahoogroups.com Terkirim: Sen, 23 Agustus, 2010 09:02:30 Judul: Re: Bls:

Re: [Komunitas AmiBroker] Paket Merdeka AmiBroker Batch 29 (plus free pelatihan)

2010-08-22 Thread Yoga Sampurno
Pa dendo pelathian selanjutnya tgl brp? kemungkinan saya berhalangan tgl 28 ags thx b4 On 18/08/2010 23:41, amibrokerfr...@yahoo.co.id wrote: MILIKI AMIBROKER ASLI DAN DAPATKAN FREE PELATIHANNYA Halo teman-teman... Good news...! Saat ini dengan hanya membeli AmiBroker versi Professional

Re: [Komunitas AmiBroker] Re: AFL Smooth untuk W%R ADX

2010-08-22 Thread fauzi_chairani
Pak Isfandi terima kasih banyak atas AFL smooth untuk W%R dan ADXnya yg sangat berguna, semoga Tuhan membalas semua kebaikan Bapak dengan berlipat ganda. Salam. Fauzi C Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: isfandi2...@yahoo.com Sender:

Re: [Komunitas AmiBroker] Paket Merdeka AmiBroker Batch 29 (plus free pelatihan)

2010-08-22 Thread Veronika
Pak Dendo, kalau ikut pelatihannya aja, karena udah punya Ami aslinya, kena biaya berapa? Terima kasih 2010/8/23 Yoga Sampurno yogasampu...@gmail.com Pa dendo pelathian selanjutnya tgl brp? kemungkinan saya berhalangan tgl 28 ags thx b4 On 18/08/2010 23:41, amibrokerfr...@yahoo.co.id

Re: [Komunitas AmiBroker] INDF berpotensi menuju 4550

2010-08-22 Thread irwan
Kalau boleh nimbrung soal INDF not good sign dari OrdVol Bisa diliat diblog http://alligator-analisasaham.blogspot.com/ http://www.alligator-analisasaham.blogspot.com/ Regards Irwan -Original Message- From: Kenzie Sebastian

Re: [amibroker] what is the difference between these two code lines

2010-08-22 Thread ram vel
HOWARD,   Many thanks. Thanks for lettting us see the core area. You have kindly shown us how an entry can be having part 1 and part2 to give specific direction, and clarity. I have made a exit code in same lines. Suddenly I feel things are better and clear. Appreciate the precision in your

Re: [amibroker] Re: Help- is there an afl code for vector average/ please help

2010-08-22 Thread ram vel
Thanks. No, I am not referring to vecttorvest. regards rv --- On Sat, 8/21/10, donald_brown_48367 donald_brown_48...@yahoo.com wrote: From: donald_brown_48367 donald_brown_48...@yahoo.com Subject: [amibroker] Re: Help- is there an afl code for vector average/ please help To:

[amibroker] AFL Query

2010-08-22 Thread Meg Nath
Hi All, I was trying to generate an AFL which indicated buy signals when there is a 1% change b/w the close price of adjacent bars in an 1 minute chart. It worked in EOD data but failed in 1minute data please help. Code is written below! thanks in advance _SECTION_BEGIN(Unnamed 17);

Re: [amibroker] AFL Query

2010-08-22 Thread afzal hossain
Try this if it works for you | may be i am wrong that you want _SECTION_BEGIN(Price-Volume Change %);PlotOHLC(Open,High,Low,Close,,IIf(CloseOpen, colorBrightGreen,colorRed), styleCandle); //price

[amibroker] Re: what is the difference between these two code lines

2010-08-22 Thread bistrader
Howard, One comment, and somewhat beyond the answer to the original question. I like to convert impulse conditions to state (or your level) prior to and'g via Flip prior to the following. This is not always needed and is sometimes not wanted, but in most cases it is. The two are combined to

[amibroker] Point Figure afl in AmiBroker

2010-08-22 Thread bistrader
Is there a Point Figure afl that comes with AmiBroker? If not, is there a Stocks and Commodities afl or any afl out there that is Point Figure?

Re: [amibroker] OT: mutlicore cpu

2010-08-22 Thread Tomasz Janeczko
Hello, Video creation software is completely different. They do a lot of math *per pixel* (it means that lots of FPU operations are needed for single pixel), for example many algorithms use 8x8 pixel blocks 64*(4 bytes per pixel)= 256bytes and do complex transform such as cosine transform. It

RE: [amibroker] OT: mutlicore cpu

2010-08-22 Thread TA
Thanks for clarification. Would you mind sharing with us why you bought an i7 (6 core) cpu? TIA From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Tomasz Janeczko Sent: Sunday, August 22, 2010 11:24 AM To: amibroker@yahoogroups.com Subject: Re: [amibroker] OT:

Re: [amibroker] OT: mutlicore cpu

2010-08-22 Thread Tomasz Janeczko
Hello, why you bought an i7 (6 core) cpu? Several reasons - my previous computer was 4 year old and it was 2 core. Buying anything less than i7 would not give me any visible gain. In, although new machine is faster, in everyday tasks it makes little difference (especially with the fact that

RE: [amibroker] OT: mutlicore cpu

2010-08-22 Thread TA
Thanks again. My last question. Have you tested AB to hand over some calculations to GPU (e.g., using CUDA)? Since GPU has its own FPU and memory. Sorry for all these layman question! I am really fascinated by all these stuff. TIA From: amibroker@yahoogroups.com

[amibroker] Plotting or otherwise identifying Scale in, Scale out Trade Points

2010-08-22 Thread Mike
I have no difficulty running scale in, scale out systems, but I need to see where the scale in scale out points occur, not just the final closed trades. Anyone have a solution? Thank you. Mike

Re: [amibroker] OT: mutlicore cpu

2010-08-22 Thread Tomasz Janeczko
Hello, CUDA was discussed before, check the archives. Best regards, Tomasz Janeczko amibroker.com On 2010-08-22 21:52, TA wrote: Thanks again. My last question. Have you tested AB to hand over some calculations to GPU (e.g., using CUDA)? Since GPU has its own FPU and memory. Sorry for all

RE: [amibroker] OT: mutlicore cpu

2010-08-22 Thread TA
I checked the archives and the only thing that I see is that dloyer123 wrote a plugin using cuda and he saw significant improvement in his back testing. Have you tested AB with Cuda? Any plans to implement such technologies in AB? TIA From: amibroker@yahoogroups.com

Re: [amibroker] OT: mutlicore cpu

2010-08-22 Thread Tomasz Janeczko
Hello, Look again in the archives (not only in one post but my responses). Short answer is: NO, for many reasons - all provided in my responses in that thread. Best regards, Tomasz Janeczko amibroker.com On 2010-08-22 22:16, TA wrote: I checked the archives and the only thing that I see

Re: [amibroker] Re: Problem with ExportImage in AB 5.30.4?

2010-08-22 Thread Progster
OK, thanks for that. I must have some sort of local configuration incompatibility ... If anyone else should see the same problems as I've seen, please drop a note, and if I solve it, I'll report back. On 8/21/2010 3:51 PM, amibroker wrote: Hello, Yes, the script works perfectly fine on

Re: [amibroker] Re: Problem with ExportImage in AB 5.30.4?

2010-08-22 Thread Progster
I wonder if there is any chance that the presence of SnagIt could be interfering with ExportImage? (I have SnagIt on all the machines ...) On 8/22/2010 4:51 PM, Progster wrote: OK, thanks for that. I must have some sort of local configuration incompatibility ... If anyone else should see

Re: [amibroker] OT: mutlicore cpu

2010-08-22 Thread Ted Byers
Hi Tomasz On Sun, Aug 22, 2010 at 3:29 PM, Tomasz Janeczko gro...@amibroker.comwrote: Hello, evolves.) As to technical reasons - among other things - to do actual tests. 4 years ago I have written portions of AFL engine using OpenMP (parallel library) to test actual, real-world performance

[amibroker] Direct Licensing

2010-08-22 Thread Linda
Dear All, Could somebody please explain to me what Direct License mean? I read this at AmiBroker bulk order page. Linda

Re: [amibroker] Re: Problem with ExportImage in AB 5.30.4?

2010-08-22 Thread Prashanth
Progster, I do not have snag it. When I run the JS file I get blank pic files for stocks in Watchlist while getting the pic correct for the test.gif (current ticker that is open). Cheers Prashanth - Original Message - From: Progster progs...@codefortraders.com To:

[amibroker] Re: OT: mutlicore cpu

2010-08-22 Thread af_1000000
TJ, If I am not mistaken i7 920 is 4 core (45nm technology) not 6 core (32nm technology). Regards, AF --- In amibroker@yahoogroups.com, Tomasz Janeczko gro...@... wrote: Hello, why you bought an i7 (6 core) cpu? Several reasons - my previous computer was 4 year old and it was 2 core.

[Komunitas AmiBroker] free e-book saham bhs ind

2010-08-21 Thread sem susilo
http://sahampemenang.blogspot.com/2010/08/free-e-book-saham-bhs-indonesia.html

Re: [Komunitas AmiBroker] AFL Stochastic lengkap

2010-08-21 Thread MMDandytra
Hehe Terima kasih banyak Pak Eco. LLV dan HHV yang ternyata saya cari2 ;) 2010/8/20 Eco Syariah esyar...@gmail.com Saya bukan programmer... jd belum tau codingnya... kalau mau iseng2 coba ini: Rumus stochastic %K periode 5 = *100 x [ Close - LLV (C,5) ] / [ HHV (C,5) - LLV (C,5)]*

Re: [Komunitas AmiBroker] Re: AFL Smooth untuk W%R ADX

2010-08-21 Thread FAUZI CHAIRANI
Dear All, Apakah ada yang mau sharing AFL untuk W%R dan ADX yang sudah di-smooth? Terima kasih. Salam, Fauzi C

Re: [Komunitas AmiBroker] BUMI: Potential Rebound Following With Bullish Outside Day

2010-08-21 Thread greenhorn
No: 1-4 sama dengan tanggal 26 May, bisa dijelaskan apa bedanya kali ini? salam, green 2010/8/20 raja_ar_radu raja_ar_r...@yahoo.com This post originally posted at: http://trend-traders.com/2010/08/bumi-potential-rebound-following-with-bullish-outside-day/ Note: BUMI terkonfirmasi

Re: [Komunitas AmiBroker] Re: Trading Plan

2010-08-21 Thread FAUZI CHAIRANI
Pak Isfandi, terima kasih banyak atas sharing AFL MACD yang indah nian.  Pak pengertian inside bar change itu bisa dijelaskan? Apakah itu sinyal ramalan akan terjadi cross dalam 1-3 bar kedepan.  Salam. FC From: isfandi2...@yahoo.com isfandi2...@yahoo.com

Re: [Komunitas AmiBroker] Formula Parabolic SAR

2010-08-21 Thread Erianto
Minta tanya, di mana yah kita bisa copas rumus AFL Ɣªήğ bs munculkan signal jual beli dgn Parabolic SAR? Thanks Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: FAUZI CHAIRANI fauzi_chair...@yahoo.com Sender: amibroker-4-bei@yahoogroups.com Date: Fri, 20

Re: [Komunitas AmiBroker] Formula Parabolic SAR

2010-08-21 Thread agus basuki
From: Erianto eriantodharma...@yahoo.com To: Amibroker grup amibroker-4-bei@yahoogroups.com Sent: Sat, August 21, 2010 4:49:43 PM Subject: Re: [Komunitas AmiBroker] Formula Parabolic SAR   Minta tanya, di mana yah kita bisa copas rumus AFL Ɣªήğ bs munculkan

Re: [Komunitas AmiBroker] Re: Trading Plan

2010-08-21 Thread Erianto
Ada Ɣªήğ bs bantu gimana caranya kl mau buat atau insert symbol mis tanda panah atau titik buat signal jual atau beli? Thanks sebelumnya Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: FAUZI CHAIRANI fauzi_chair...@yahoo.com Sender:

Re: [Komunitas AmiBroker] Formula Parabolic SAR

2010-08-21 Thread Erianto
Thanks a lot pak Agus. Nanti sy coba buka di кσмρυтєя. Thanks pak Sent from my BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: agus basuki basuki_a...@yahoo.com Sender: amibroker-4-bei@yahoogroups.com Date: Sat, 21 Aug 2010 18:34:12 To:

[amibroker] Help- is there an afl code for vector average/ please help

2010-08-21 Thread rvlv
Hi experts, I like to know about vector average afl code. please help regards rv

Re: [amibroker] Re: Problem with ExportImage in AB 5.30.4?

2010-08-21 Thread Progster
Hi All, I've described the observed problem, and I've provided ready-to-use code. Is there anything more I can do to elicit some helpful response, feedback or commentary as to why the scripts are not working here as expected? Can anyone state whether the scripts either do or don't work for

[amibroker] Re: MCO v1.7 Error Message

2010-08-21 Thread amiuser999
Thanks for the update, keep me posted if you don't mind. You also mentioned IO license before...I wasn't aware of other apps but I'm wondering is this a multithreaded/core Intelligent Optimizer? I've been wondering even if I get this MCO working not sure how it will help exactly since I need

[amibroker] Re: Help- is there an afl code for vector average/ please help

2010-08-21 Thread donald_brown_48367
vectorvest? --- In amibroker@yahoogroups.com, rvlv r...@... wrote: Hi experts, I like to know about vector average afl code. please help regards rv

[amibroker] Re: Help- is there an afl code for vector average/ please help

2010-08-21 Thread donald_brown_48367
vectorvest? --- In amibroker@yahoogroups.com, rvlv r...@... wrote: Hi experts, I like to know about vector average afl code. please help regards rv

[amibroker] Fw: Re: Fw: Is it possible to make an afl code for these charts,please

2010-08-21 Thread kin ford7
  From: kin ford7 for...@yahoo.com Subject: Fw: Is it possible to make an afl code for these charts,please hi afl experts   I have some  queries if possible please try to help.     First thing   Everybody talks of taking trades in harmony with higher timeframe.

[amibroker] Fw: Is it possible to make an afl code for these charts,please,with attachments [4 Attachments]

2010-08-21 Thread kin ford7
hi afl experts,     First thing   Everybody talks of taking trades in harmony with higher timeframe. Does this really work? Have you any opinion or backtest to agree with this?   Example I am trading with 15min timeframe and I need to take signals in a timeframe at least 4

[amibroker] what is the difference between these two code lines

2010-08-21 Thread kin ford7
hi friends   what is difference between buy signals below given buy = c ema(c,13); or buy =cross(c,ema(c,13); To get latest cross over which is better please help ford

Re: [amibroker] what is the difference between these two code lines

2010-08-21 Thread Mubashar Virk
Both lines cover the the latest/or the last cross. First line buys if/when(ever) Close is greater than 13- bar EMA of the Close. Second lines buys when close last crossed over the 13-bar EMA of the Close. If you are looking for the last cross only then use second line. On 8/21/2010 10:34

[amibroker] Re: Problem with ExportImage in AB 5.30.4?

2010-08-21 Thread amibroker
Hello, Yes, the script works perfectly fine on my end and produces correct image. Best regards, Tomasz Janeczko amibroker.com --- In amibroker@yahoogroups.com, progster01 progs...@... wrote: Thanks for the suggestion, but the DISPLAY (Windows Control Panel) was already set to 32-bits.

[amibroker] Re: Specified Optimizer Engine not found

2010-08-21 Thread amibroker
Hello, So you are using shared folder for 32-bit and 64-bit plugins. You did not write about it earlier. This changes the picture quite a bit. There are separate versions of 32- and 64- bit plugins. 64-bit is larger than 32-bit version. If you need to use both in shared folder, one should has

Re: [amibroker] what is the difference between these two code lines

2010-08-21 Thread Howard B
Hi Ford -- Mubashar is correct. To expand a little on what he wrote -- The expression C EMA(C,13) defines a condition known as a level. The level is 1 (or, equivalently, True) for every bar where the Close of that bar is greater than the 13 period exponential moving average computed using the

[amibroker] OT: mutlicore cpu

2010-08-21 Thread TA
TJ On many occasions you have written that the reason that you have not implement multicore usage in AB is that single symbol data saturates the on-die cache and memory bandwidth. The tests that I have seen for video creation shows the apps that take advantage of multicore processes finish

Re: [Komunitas AmiBroker] Re: Trading Plan

2010-08-20 Thread Eco Syariah
Mas Is, Kabare apik-apik... suwun... BTW... kite bahas indicator lagi nih... keknya Trading Plan emang kurang menarik ya... hehehe... yo wis lah... Very nice MACD Candle Color... mungkin ada yang mau menggabungkannya dengan Bollinger Band seperti ide Markus di link video ini:

Re: [Komunitas AmiBroker] AFL Stochastic lengkap

2010-08-20 Thread Eco Syariah
Saya bukan programmer... jd belum tau codingnya... kalau mau iseng2 coba ini: Rumus stochastic %K periode 5 = *100 x [ Close - LLV (C,5) ] / [ HHV (C,5) - LLV (C,5)]* 2010/8/20 MMDandytra mmdandy...@gmail.com Bukan itu maksudnya Pak Eco. Saya sudah cek yang koding dari Pak Isfandi, tp

[Komunitas AmiBroker] BUMI: Potential Rebound Following With Bullish Outside Day

2010-08-20 Thread raja_ar_radu
This post originally posted at: http://trend-traders.com/2010/08/bumi-potential-rebound-following-with-b\ ullish-outside-day/ Note: BUMI terkonfirmasi bullish pada perdagangan sesi 1, beberapa hal yang mengkonfirmasi sbb: 1. RSI meninggalkan area oversold 2. BUMI berhasil break area MLP

Re: [Komunitas AmiBroker] Re: Kalkulator Saham

2010-08-20 Thread Rendy Renaldy
Mantep pak eco MMnya smoga cpt rampung. Powered by Telkomsel BlackBerry® -̶̶•-̶̶•̸Ϟ•̸THANK YOU•̸Ϟ•̸-̶̶•-̶ ™ -Original Message- From: Eco Syariah esyar...@gmail.com Sender: amibroker-4-bei@yahoogroups.com Date: Fri, 20 Aug 2010 14:18:09 To: ESesyar...@gmail.com Reply-To:

[amibroker] Re: customized walk forward backtesting possible?

2010-08-20 Thread adexie
thanks Howard for your suggestion. I guess the difficult part for me is how to code it up. I found this online, http://www.amibroker.com/kb/2008/05/19/historical-portfolio-backtest-metrics/ but it's not very comprehensive on custom backtest. Do you know of any other documentation on this topic?

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