Registration with the Sri Lanka FINANCIAL CHRONICLE

All information contained in this forum is subject to Disclaimer Notice published.
Thank You
FINANCIAL CHRONICLE

www.srilankachronicle.com
Encyclopedia of Latest news, reviews, discussions and analysis of stock market and investment opportunities in Sri Lanka
Because it is the only listed milk powder producer ?sashimaal wrote:May happen sooner than we think![]()
At least they share some value with locals, Jobs to farmers,employers, Government tax and CSR etc,Chinwi wrote:Over 90 % is with the main foreign shareholder.
They siphon each and every cent they earn here in Sri lanka to overseas owners. (in billions ) *
Nothing left to make it grow.
Asset value of the share is just 47 Rupees while they earn over 100 rupees per year.
----
* Is this somewhat similar to paying in billions to import milk powder ? (except some cash going to our farmers instead of to NZ farmers )
Should be in a disaster situation then.. Or if they go for a sub div.malanp wrote:
Share trading, mostly reverses to the mean.
we never know, it will reach 600 after 4 years
Another crossing happened - at RS 2500mark wrote:ya every upturn is backed by a few crossings,then it go to heaven
IMO NEST should go for a split to increase liquidity....dudi wrote:some say NEST share price will reach Rs15000 one day
Don't get too optimistic about NESTdudi wrote:some say NEST share price will reach Rs15000 one day
rainmaker,rainmaker wrote:Don't get too optimistic about NESTdudi wrote:some say NEST share price will reach Rs15000 one day
NEST market cap in rupees 104b which you can convert to a US$ figure ....
Cadbury (all worldwide operations) was sold for US$19b to Kraft.
Fonterra market cap is around US$9b
.... go figure![]()
Thanks for the suggestion.smallville wrote:Dileepa,
Can u also include or make some alterations in ur simulator to have the following, if its possible;
1) Enter initial investment and date quantity
2) Cash in hand and averaging to have "NO" value in case no more cash infusion
3) to have a buy/sell price box if we buy/sell omiting the signals of the system
Yes I'm aware of the problem.smallville wrote:
For some counter like REEF (I just checked it cuz of hype..) the strategies are not working.. May I know what buy/sell strategy (50 day MA vs 14 day, MACD - RSI - SAR combined, etc..)
Have u tested different strategies to diff counters?
1. Go to Tools -> Indicator Builder from DFN Charting.
//------------------------------------------------------------Start
DataArray LMA = MovingAverage(Close, 20, Simple); // Simple 20 day MA of close price
DataArray SMA = MovingAverage(Close, 5, Simple); // Short Moving Average
DataArray LMAyest = ref(LMA,-1); // Long MA of yesterday
DataArray SMAyest = ref(SMA,-1);
DataArray LMA_2;
DataArray SMA_2;
DataArray LMAyest_2;
DataArray SMAyest_2;
DataArray LMA_3;
DataArray SMA_3;
DataArray LMAyest_3;
DataArray SMAyest_3;
DataArray BuyP;
DataArray Buy_L;
DataArray Buy_N;
DataArray SellP;
DataArray BarCount;
DataArray BuyBarCount;
DataArray SellBarCount;
DataArray Period = 0;
plot(Close,Orange,Solid,1.0); // Daily close price plot
// Sell Signal
if ((LMAyest < SMAyest) and (SMA < LMA)) then
// Search for previous Buy signal and fetch the Buy Price
for(int i = 120; i > 1; i = i-1) do
LMA_2 = ref(LMA,-(i-1));
SMA_2 = ref(SMA,-(i-1));
LMAyest_2 = ref(LMA,-i);
SMAyest_2 = ref(SMA,-i);
if((LMAyest_2 > SMAyest_2) and (SMA_2 > LMA_2)) then
BuyP = ref(Close,-i); // For safety check
end
end
SellP = Close;
end
// Buy Signal
if ((LMAyest > SMAyest) and (SMA > LMA)) then
// Search for previous Buy signal and fetch the Buy Price
for(int i = 120; i > 1; i = i-1) do
LMA_2 = ref(LMA,-(i-1));
SMA_2 = ref(SMA,-(i-1));
LMAyest_2 = ref(LMA,-i);
SMAyest_2 = ref(SMA,-i);
if((LMAyest_2 > SMAyest_2) and (SMA_2 > LMA_2)) then
Buy_L = ref(Close,-i);
for (int j = (i-1); j > 1; j = j-1) do
LMA_3 = ref(LMA,-(j-1))
SMA_3 = ref(SMA,-(j-1))
LMAyest_3 = ref(LMA,-j)
SMAyest_3 = ref(SMA,-j)
if((LMAyest_3 > SMAyest_3) and (SMA_3 > LMA_3)) then
Buy_N = ref(Close,-j);
end
end
end
if (Buy_N < Buy_L) then
BuyP = Buy_N;
else
BuyP = Buy_L;
end
end
end
// Real Signal
drawsymbol((LMAyest > SMAyest) and (SMA > LMA) and (Close < BuyP),BuyArrow,Green,Below); // Buy
drawsymbol((LMAyest < SMAyest) and (SMA < LMA) and ((BuyP*1.1) < SellP),SellArrow,Red,Above); // Sell
//------------------------------------------------------------End
Similar topics
Permissions in this forum:
You cannot reply to topics in this forum