Now, Words and Their Stories, a VOA Special English program about American expressions. I'm Rich Kleinfeldt with some financial words and expressions used in business and the stock market.

Our first expression is "in the red." It is another way of saying that a business is losing money. In the past, numbers in the financial records of a company were written in red ink to show a loss.

A business magazine recently published a report about a television company. The report said the company was still in the red, but was able to cut its loss from the year before.

A profit by a business is written in black numbers. So a company that is "in the black" is making money. An international news service reported that a private health insurer in Australia announced it was "back in the black with its first profit in three years."

Another financial expression is "run on the bank." That is what happens when many people try to withdraw all their money from a bank. A "run on the bank" usually happens when people believe there is danger a bank may fail or close.

Newspaper reports about a banking crisis in Russia used that expression. They said the government acted because of fears that the crisis would cause a run on the banks.

"When a run on the banks was starting, there was not much they could do," said a banking expert.

"Day trading" is a new expression about a system that lets investors trade directly on an electronic market system. The system is known as NASDAQ, short for The National Association of Securities Dealers Automated Quotation. It was the first completely computerized stock market. It sells stocks of companies not listed on any stock exchange. Many high technology companies are listed on it.

Day trading companies provide a desk and a computer system to an investor who wants to trade. Individuals must provide fifty thousand dollars or more to the trading company to pay for the stocks they buy. Thousands of other investors do day trading from computers in their homes.

A day trader watches stock prices carefully. When he sees a stock rise in price, he uses the computer to buy shares of the stock. If the stock continues to rise in price in the next few minutes, the day trader sells the shares quickly to make a small profit. Then he looks for another stock to buy. If a stock goes down instead of up, he sells it and accepts the loss.

The idea is to make a small profit many times during the day. Day traders may buy and sell stocks hundreds of times each day.

Many day traders lose all their money in a week or so. Only about thirty percent succeed in earning enough from their efforts to continue day trading.

This VOA Special English program, Words and Their Stories, was written by Frank Beardsley. This is Rich Kleinfeldt.

voa 2015 / 4 / 26的更多相关文章

  1. voa 2015 / 4 / 27

    As reports of the death toll rise in Nepal, countries and relief organizations around the world are ...

  2. voa 2015 / 4 / 25

    When English speakers talk about time and place, there are three little words that often come up: in ...

  3. voa 2015.4.29

    Nepal has declared three days of mourning for the victims of Saturday's 7.8 magnitude earthquake tha ...

  4. Python实现WEB QQ 登录与消息发送(第一版本 2015.06.26)

    WEB QQ的登录步骤与协议,需要的度娘下,很多. 转载说明来源:http://www.cnblogs.com/ryhan/p/4602762.html 我这实现是参考了度娘搜的 和自己抓包分析的. ...

  5. 腾讯 pc端面试(2015.10.26)

    整个面试过程全部围绕着我在前一家公司做过的项目开始提问.因为这个项目是我主要负责的,所以面试官第一个问题是让我讲解了整个项目的框架结构.在对于项目的框架结构的讲解方面,大致条理还算清醒但是因为很少对做 ...

  6. iOS 学习笔记 二 (2015.02.26)

    How To Use Git Source Control with Xcode in iOS 6 If you're new here, you may want to subscribe to m ...

  7. 2015 11 26 java 配置环境变量

    使用java软件, 须进行改变配置环境变量.需要2步. 第一,在电脑中找到配置环境变量的位置: 我的电脑,属性,高级,环境变量. 第二,进行添加两个变量,更改一个变量: 1,变量名:JAVA_HOME ...

  8. voa 2015 / 4 / 19

      potentially – adv. capable of becoming real, a possibility tackle – v. to deal with a difficult pr ...

  9. voa 2015 / 4 / 18

    Words in This Story gerund - n. an English noun formed from a verb by adding -ing infinitive - n. th ...

随机推荐

  1. 关于vue生命周期中的同步异步的理解

    在vue官网中介绍生命周期的图如下: 主要测试代码如下: 主要是测试前四个生命周期beforeCreate,created,beforeMount,mounted,里面同步和异步的执行顺序,其它的类似 ...

  2. html或者php中 input框限制只能输入正整数,逻辑与和或运算

    有时需要限制文本框输入内容的类型,本节分享下正则表达式限制文本框只能输入数字.小数点.英文字母.汉字等代码. 例如,输入大于0的正整数 代码如下: <input onkeyup="if ...

  3. javascript基础-事件1

    原理 事件分两种.第一种浏览器事件,由浏览器抛出事件,它是人机交互的基础:第二种自定义事件,由程序员抛出事件,它是模拟事件流程.两者都是为了完成数据的传递. 浏览器事件 机制 冒泡和捕获两种机制.因I ...

  4. Android6.0-运行时权限处理

    为什么需要有运行时权限? 大家都知道在Android6.0之前,权限在应用安装过程中只询问一次,以列表的形式展现给用户,如果点击取消(即不认可应用所申请的权限),则会取消应用的安装.而用户出于安装应用 ...

  5. 生成简单的php验证码

    之前发表过,但是上面只是一个截图,不便于大家复制和使用,所以在这重新发表一遍. <?php //生成验证码图片 Header("Content-type: image/JPEG&quo ...

  6. [python]-数据科学库Numpy学习

    一.Numpy简介: Python中用列表(list)保存一组值,可以用来当作数组使用,不过由于列表的元素可以是任何对象,因此列表中所保存的是对象的指针.这样为了保存一个简单的[1,2,3],需要有3 ...

  7. 从netty源码里拿到的关于http错误码,自己学习下

    public static HttpResponseStatus valueOf(int code) { switch (code) { case 100: return CONTINUE; case ...

  8. Java基础——关于访问权限的一道例题

    一.回顾访问修饰符 ==public:被它修饰的类,属性,方法,不仅可以跨类访问,而且可以跨包(package)访问 ==private:可以修饰数据成员,构造方法,方法,不能修饰类,被它修饰的成员只 ...

  9. 有关Dom的一些操作

    学习前端的都会了解到一些Dom操作,让我们来看看Dom操作有哪些吧! DOM(即 Document Object Mode) 是 W3C(万维网联盟)的标准. DOM 定义了访问 HTML 和 XML ...

  10. while和do while循环的简要概述

    循环结构 1.while结构 在英文中"while"这个词的意思是"当",而在 Java 程序设计中,也可以将其理解为"当",其语法结构是: ...