User Pass
Remember Me
Web Building Resources

Discussions


29
Jan

 Online Customizable Stock Screener is up !

 29 Jan 2012 07:19 pm

Hello Kawan Kawan,

Glad to announce the of the beta version of online stock screener.
You can customize your screener by change the criteria
Macd, Signal, %K & %D , later we will include Bollinger bandwidth screening as well.

This will enable you to select potential stock & get earlier into the game.

The Online Stock Screener will evolve base on your feedback. We will improve it... Please use it intelligently !

address : http://wahsei.com/sharemarket/techanalysis/

Screen Shot :

By : wahsei | Category: KLSE Stock Technical Analysis | Comments [0]

19
Dec

 0095.KL KEY WEST GLOBAL TELECOMM

 19 Dec 2011 09:51 pm

Full Name : KEY WEST GLOBAL TELECOMM
Stock Code : 0095.KL
Stock Counter : KEYWEST
Board Ace Market
Exchange Sector : Tradserv
Financial Year-End : 31-Jan
Par Value (MYR) : 0.10
Issued Shares (Mil) : 135.00
Paid-Up Cap. (MYR Mil) : 13.50



This company has not making money for the past
Operating profit (MYR '000)
2010 : -7676.0
2009 : -7184.0
2008 : 3155.0
2007 : 29.0

However the interest fact is recent ACE stocks have been a target of investors hence we are seeing about more that 50% gain on 2 occasions this year ( late Aug & early nov 2011)

Looking at the latest stochastic oscillator, this stock once again found itself in a over sold position again similar to the last 2 rounds. Is this a indication of 3rd will to come ? I believe so & it will be within a week or so. Lets watch & see

Regards
Nasigoreng

By : Nasi Goreng | Category: Ajax Tutorial | Comments [0]

08
Dec

 Systech - 081211 MACD & Stochastic Analysis

 08 Dec 2011 11:32 pm

SYSTECH BHD
(Kuala Lumpur: 0050.KL )
Last Trade: 0.125
Day's Range: 0.125 - 0.13
52wk Range: 0.01 - 0.35
Volume: 2,339,300
Avg Vol (3m): 2,698
Shared Issued: 254,250,020

Let's us look in detail on this stock SYSTECH.



MACD showed convergence of 2 lines in Oct 11 signaling a bullish momentum till 23 Nov when the 2 line meet again before it went sideway. However stock quote has been suppressed & unable to make a breakthrough due to external deliberate factor.
2 Lines separated on the 5 Dec heading upwards again signaling bullish momentum again

Stochastic Chart showed 1st of Dec when the line meet at in over sold region. Soon after 2 line separated heading upward & never looked back. Buying momentum continue to be strong.

Why the stock is still not performing ? Is something big going to happened.

Summary : Potential Stock to put on the watch list. A Buy Call !


Disclaimer : Analysis is based of historical data, trend & tools. It was meant to provide additional information for investor's before making any decision to invest. This does not consider other factors eg: natural disaster, political..etc. Pls use your own discretion in making decision to invest.

By : Nasi Goreng | Category: KLSE Stock Technical Analysis | Comments [0]

12
Jan

 Dynamic delete with animation using prototype

 12 Jan 2009 06:26 pm

There are many JavaScript libraries available for downloads that enable you to create an ajax driven animated website.

In this example we use scriptaculous/prototype libraries to create a dynamic delete with animated action.

First you need to download scriptaculous scripts from http://script.aculo.us/downloads

Put prototype.js, and the six files scriptaculous.js,
builder.js, effects.js, dragdrop.js, controls.js and slider.js
in a directory of your website, e.g. /js


Now, you can include the scripts by adding the following
tags to the HEAD section of your HTML pages:

<script src="/javascripts/prototype.js" type="text/javascript"></script>
<script src="/javascripts/scriptaculous.js" type="text/javascript"></script>

scriptaculous.js will automatically load the other files of the script.aculo.us distribution in, provided they are accessible via the same path.

How to create dynamic delete with animation using prototype

Code :
 
<script src="js/prototype.js" type="text/javascript"></script>
<script src="js/scriptaculous.js" type="text/javascript"></script>


Custom made javascript function to perform the job



Code :

<script type="text/javascript">

function doit(id)
 {
if (confirm('Sure you wanna delete?')) {
    var url = 'delete.php';
    var data = 'id='+id;
    var target = '';
    var myAjax = new Ajax.Updater( target,
        url,
        {method: 'get', parameters: data, onComplete: remove(id) }
    );  }
    return false;
}

function remove(id)
{
Effect.Fade('del-'+id);
new Effect.Appear("status");
   var div = $('status');
              div.style.backgroundColor = '#eeeeff';
                div.style.border = '1px solid  #00ffff';
                div.style.font = 'bold 10pt arial';
  div.innerHTML = 'Deleted record id= ' + id ;
new  Effect.Fade("status", {duration:3});
 }

</script>


Code :

<div id="del-1"><a href="delete.php?id=1" onClick="return doit(1)" class="delete" id="delete-1">Del1</a></div>
<div id="del-2"><a href="delete.php?id=2" onClick="return doit(2)" class="delete" id="delete-2">Del2</a></div>
<div id="del-3"><a href="delete.php?id=3" onClick="return doit(3)" class="delete" id="delete-3">Del3</a></div>
<div id="del-4"><a href="delete.php?id=5" onClick="return doit(5)" class="delete" id="delete-5">Del4</a></div>


Code :
<div id="status"></div>

By : sean | Category: Ajax Tutorial | Comments [0]



Link