600123,买进的理由!

本文回顾了作者两次购买600123股票的经历,并从行业误解、产能增长及市盈率角度分析其投资价值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

600123,买进的理由!

 

       我第一次买进是0577日,价格8.45元,当天就套牢了,后来下跌到最低价7.03元。曾上涨到11.50元,没抛出。你说我笨不笨?第二次买进是051116日,价格是9.10元,没套。仓位30%,平均成本8.95元。目前价格10.60元,复权价13.78元,帐面利润54%。

 

买进的理由是:(由于水平关系,只能和你说说大概的东东。)

 

1,                  煤炭股应该是资源类行业,而市场主力认为是周期性行业,所以在有可能煤炭行业景气度产生拐点的时候主力就抛弃,使其不合理下跌。如果市场主力改变估值系统,那么内在价值就大大提高,就具备投资价值。

 

2,                  兰花科创的生产能力在近几年内快速度增长,我估计05420万吨(事实上仅完成404万吨),06500万吨,加大宁36%,估计也有70万吨的产量,合计570万吨,增长率将达到41%。07年达到680万吨,加大宁100万吨,合计780万吨,增长率37%。2010年煤炭产量将达到1000万吨,相当于05年的增长率是247%。化肥这一块增长率也差不多,05年产量36万吨,2010年产量100万吨,相当于05年的增长率278%。不包括公司目前正在进入的煤变油等等其他化工产品。无论如何应该属于高速成长股。

 

3,                  在煤炭价格没下跌、成本稍许上涨的情况下,我的预测每股利润是1.68元(招商证券卢平分析师的预测是1.72元),那么目前的价格市盈率仅仅是6.30倍。如果煤炭价格下跌5%,那么应该还是有增长的,每股利润还是有1.50元以上。我买进时候的市盈率不足5倍。实在是太低了!!

 

那么目前的价格是否具备投资价值呢?这是大家都想知道的。有!我觉得还是有投资价值,而且还是大大的有!

 

为什么呢?我们这样说吧,06年每股利润1.68元,如果按照目前煤炭股的平均市盈率10倍,那么就可以到16.80元,如果按照资源类的估值,按照13倍的市盈率,再根据兰花科创持续成长性的溢价,15倍的市盈率不算高吧?那么它的合理价格就应该是25.20元!你说值得不值得投资?那么目前合理的价格应该是1.15*15倍=17.25元。

 

老股民申明:我这个买进的理由对你不构成投资建议,如果你想买进,责任只能由你自己来承担。如果你想买进,那么其实就等于是在给我抬轿子。因为我有!

以下是Java中的商品买进售出代码示例: ```java import java.util.Scanner; public class Product { private String name; private int quantity; private double costPrice; private double sellingPrice; public Product(String name, int quantity, double costPrice, double sellingPrice) { this.name = name; this.quantity = quantity; this.costPrice = costPrice; this.sellingPrice = sellingPrice; } public void buy(int quantity, double costPrice) { this.quantity += quantity; this.costPrice = ((this.costPrice * this.quantity) + (costPrice * quantity)) / (this.quantity + quantity); } public void sell(int quantity) { if (this.quantity >= quantity) { this.quantity -= quantity; System.out.println("Total Selling Price: " + (quantity * sellingPrice)); } else { System.out.println("Insufficient Quantity!"); } } public void printDetails() { System.out.println("Product Name: " + name); System.out.println("Available Quantity: " + quantity); System.out.println("Cost Price: " + costPrice); System.out.println("Selling Price: " + sellingPrice); } public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter Product Name: "); String name = scanner.nextLine(); System.out.print("Enter Quantity: "); int quantity = scanner.nextInt(); System.out.print("Enter Cost Price: "); double costPrice = scanner.nextDouble(); System.out.print("Enter Selling Price: "); double sellingPrice = scanner.nextDouble(); Product product = new Product(name, quantity, costPrice, sellingPrice); product.printDetails(); System.out.print("Enter Quantity to Buy: "); int buyQuantity = scanner.nextInt(); System.out.print("Enter Cost Price: "); double buyCostPrice = scanner.nextDouble(); product.buy(buyQuantity, buyCostPrice); product.printDetails(); System.out.print("Enter Quantity to Sell: "); int sellQuantity = scanner.nextInt(); product.sell(sellQuantity); product.printDetails(); scanner.close(); } } ``` 这个示例程序创建了一个商品类,其中包含商品的名称、可用数量、成本价格和销售价格。它还包括购买和销售商品的方法,并在控制台上打印商品的详细信息。程序通过用户输入来获取商品的详细信息,然后通过调用相应的方法来模拟购买和销售商品的过程。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值