[问题] DROOY

  • 主题发起人 主题发起人 kiki
  • 开始时间 开始时间

kiki

知名会员
注册
2002-01-26
消息
37
荣誉分数
0
声望点数
116
any guy ever took a look at DROOY?

Klin, Barry, please give your comments on it.

thanks in adance!
 
I had a position a week ago, captured by my system. Entered @ 2.26, exited @ 2.53. All I know about it is this is a gold mining company based in South Africa. The chart looks petty nice, though. 10 day MA is well above 60MA (1.74)
 
最初由 klin 发布
I had a position a week ago, captured by my system. Entered @ 2.26, exited @ 2.53. All I know about it is this is a gold mining company based in South Africa. The chart looks petty nice, though. 10 da...

hi, klin:
i am very curious about how your system can find this stock and how can you set you selling price of it as 2.53?
based on some particular index or a index combination?
seems your system is so sophiscated...

:&
 
This stock is in my watch list. System will prompt me to enter based on its price of last 30 days.

The filter of my wathc list is:

Nasdaq stocks with Market Cap > 120M

// volume MA for last 7 days greater than 500000
// price MA for last 7 days greater than $10

if (SMA(barcount()-1,#volume,7)>500000) greater than 500000
and (SMA(barcount()-1,#close,7)>10) then begin
filewrite(hFile,getsymbol);
abort;
end;

// or, volume MA for last 7 days greater than 1000000
// price MA for last 7 days greater than $5

if (SMA(barcount()-1,#volume,7)>1000000)
and (SMA(barcount()-1,#close,7)>5) then begin
filewrite(hFile,getsymbol);
abort;
end;

// or, volume MA for last 7 days greater than 2000000
// price MA for last 7 days greater than $2

if (SMA(barcount()-1,#volume,7)>2000000)
and (SMA(barcount()-1,#close,7)>2) then begin
filewrite(hFile,getsymbol);
abort;
end;

// or, volume MA for last 7 days greater than 5000000

if (SMA(barcount()-1,#volume,7)>5000000) then begin
filewrite(hFile,getsymbol);
abort;
end;


In addition, only stocks performed well in history with my system will be added into this list. It's a little complicated, but still simpler than rocket science. :D
 
thanks lot buddy!

i saw two issues here:
1.is there some way to use relative volume change instead of fixed number?
cause, each of the stock has its own share volume and its own cap.

2.i keep getting a feeling that MA index should based on stock's price*tading_volume. cause i believe a price without volume is a fake number.

actually, i have an idea to develop a programmability application for stock analysis based on a well designed stock database.

i am so impressed by what you've done.

hope i can get a chance learn from you.

YOU ARE SO TALENT!
 
The criteria is not for buying stocks but choosing stocks I will pay attention to. That being said, I won't even give a look at stocks don't meet those requirements. You can find volume surge stocks in my daily market data report.

If I were such a talent like you said, I would have been sitting at beach side somewhere in Hawaii instead of coding to one o'clock at morning everyday!
 
hi, klin:

sorry for my bullish straightforward comments.
actually, i appreciate your reply very very much.
......

ok, let me thank you again to show my sincereity.

still curious about how you can get your database updated.
i think it is possible to update some stock table fields,like volume, price, etc.
BUT, how can you input company's P/E value and other background info. this sounds incredible to me.
and, furthermore, how do you associate temporary created data to your main table?
for instance, do you creaete a independent file for 7-days-MA ?

i could be buggy becuase i'm often buggy, do your decision and give me some comments.

; )
 
Thanks for your compliment which makes me happy any way. You probably think I'm a superman, right? No, I'm not creating my own database, that's too complicated and deserve a full time business. I just BOUGHT from comercial vendors. hqoute.com uses Qfeed as their datafeed and you have to be a Qfeed subscriber before you can use their software or maybe you can get historical data for free.

If you're a serious trader, then free quotes available are not enough. Check QP2.com for comercial end of day data subscription. You can get both fundamental (Market Cap,Earning etc.) and technical data (Volume, MA etc.) for us$25 a month. If you know a little programming, then you can search chart parttern like double bottom, head & shoulder with their script.

I spent a lot of time in building my own database in the past and found it's not worth. I would rather save the time for trading strategy research. If you really like the data, please mention "klin613" when you sign up. I can get one month data for free. Hope you will enjoy it.
 
got it, klin.
it is always my pleasure to make my frinds happy.
 
后退
顶部