Thursday, June 10, 2010

Forex Trading Currency Useful Information



What are the ingredients of trading in the forex market? The overseas market is comprised of a mixture of financial exchanges amongst nations. For those invested in the forex exchange generally trade in massive bulk with vast amounts of currency. For those deep into the forex stock market are likely to have companies who are cash businesses or are in the market of buying and selling liquid assets. The US market is massive but it is correct to think of the forex exchange as a giant in comparison than an individual market exchange in any one country. Those involved in the forex market are trading every single hour of every single day and sometimes on the week-ends.

You may be shocked to know the number of people that are involved in forex trading. In 2004, as much as two trillion dollars was the mean forex trading volume This is an immense number of trades for the number of daily dealings at a time. You can imagine how much one trillion dollars might be and multiply that by two, and this figure is the number of financial transactions every day on forex!

The forex market is not something new, as it has been used for over thirty years but with the introduction of computers, and the world wide web, the forex market multiplies as more everyday people and businesses start to understand the power of the forex market. Forex trading only makes up around ten percent of the total trades between countries but with greater popularity will come a greater volume.

FOREX RATES IN PAKISTAN














Variables: C Datatypes
Lisp variables may be passed to or received from C style functions that take any of the standard C datatypes as parameters. C datatypes include byte/char, short, int, float, and double. Corman Lisp transparently takes care of much of the necessary casting and conversion between Lisp and C variables.

C
int width = 0;
int height = 0;

Lisp
(setf width 0)
(setf height 0)

3.3) Variables: C Arrays and Structures
Things begin to get interesting when structures and arrays are used. Pure Lisp arrays are not equivalent to C arrays and therefore it is not possible to pass a Lisp array to a C function. If a C function takes an array a C style array must be created from within Lisp.


C
static GLfloat v0[] = { -1.0f, -1.0f, 1.0f };

When using C, arrays may be created on the stack as shown in the C code above. When a C array is created in Lisp, it is always created on the heap - meaning it must be created using malloc. Because Lisp is garbage collected there is no need to explicitly free a variable created using malloc. The garbage collector will automatically free the memory for v0 when the variable goes out of scope. Although there is nothing stopping the reader from explicitly freeing a variable using the function free.


Lisp
(setf v0 (ct:malloc (ct:sizeof ‘(:single-float 3))))

A C array may be initialized when it is created. In Lisp because C arrays are created on the heap, assignment must take place as a separate step.


Lisp
(setf (ct:cref (:single-float 3) v0 0) -1.0)
(setf (ct:cref (:single-float 3) v0 1) -1.0)
(setf (ct:cref (:single-float 3) v0 2) 1.0)

cref (the ct: prefix identifies the package that contains cref) is used for accessing a C style array, or structure. Therefore, looking at the statements above:


ct:cref - accessing an array or structure.
(:single-float 3) - in this case, it is an array of 3 floats.
v0 - the name of the array we previously created using malloc.
0 - The index into the array

The Lisp implementation seems backward compared to the C-style the reader is probably used to, e.g v0[0] = -1. But that’s how it is done in CCL. It is possible to improve upon this using macros

The previous code described assignment. Retrieving a value is much the same, but without the setf.


Lisp
(ct:cref (:single-float 3) v0 0)

-1.0

The code for accessing a C struct is described below.


C
typedef struct {
Sint16 x;
Sint16 y;
Uint16 w;
Uint16 h;
} SDL_Rect;

Lisp
(setf a-rectangle (ct:malloc (ct:sizeof ’sdl:SDL_Rect)))

(setf (ct:cref sdl:SDL_Rect a-rectangle sdl::x) 120)
(setf (ct:cref sdl:SDL_Rect a-rectangle sdl::x) 200)
(setf (ct:cref sdl:SDL_Rect a-rectangle sdl::w) 64)
(setf (ct:cref sdl:SDL_Rect a-rectangle sdl::h) 64)

The macro with-c-struct makes working with structs a lot easier, as shown below:


(with-c-struct (x rectangle sdl:SDL_Rect)
(setf
sdl::x 120
sdl::y 200
sdl::w 64
sdl::h 64))

An important consideration is that the Lisp sizeof function can only be passed defined types, for example sdl:SDL_Rect. Calling sizeof on a variable such as a-rectangle will fail.

3.4) Functions
Calling C style functions in Lisp is straightforward.


C
SDL_Init( SDL_INIT_VIDEO );
SDL_GL_SetAttribute( SDL_GL_RED_SIZE, 5 );

Lisp
(SDL_Init SDL_INIT_VIDEO)
(SDL_GL_SetAttribute SDL_GL_RED_SIZE 5)

3.5) Callbacks
defun-c-callback is used to create a function callback in Lisp. As an example, the C prototype for the SDL function SDL_AddTimer is shown below. SDL_AddTimer takes a function as one of its parameters and calls that function at the specified interval.


C callback function prototype
typedef Uint32 (*SDL_NewTimerCallback)(Uint32 interval, void *param);

Lisp callback function
(ct:defun-c-callback timer-callback ((interval SDL:Uint32) (param (:void *)))
(fformat “Yup, timer Fired”)
(values interval))

C SDL_AddTimer prototype definition
SDL_TimerID SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);

Lisp code using a callback
(setf param (ct:malloc (ct:sizeof :LONG)))

FOREX ASIAN ACADEMY


INSPIRE, INFORM & IMPROVE

THE FOREX EDUCATION IN ASIA

Founded by CHOO KOON LIP,
FOREX ASIA ACADEMY provides practical Forex education and
dynamic Forex strategies that are applicable to the ever-changing currency market.

With the unique focus and specialized knowledge to trade the Forex market during Asian hours,
we believe that FOREX ASIA ACADEMY empowers self-directed traders with
the art and science of mainstream trading and the essential skills to trade Forex.


Such a hectic day. Went to LHDN (Malaysia’s Inland Revenue Board) to settle some tax issues. It was as though the place was having a family day. The whole place was packed with people. Then I realised today is the 10th of Feb and these people are rushing to make tax payments.

After that, I went to pick up my half-handicapped bf and hurried to MidValley. We spent whole afternoon doing our last-minute CNY clothes shopping. Took a break and caught Black Ransom in the cinema. The show has nothing to shout about. I fell asleep for fifteen minutes. We continued with clothes shopping and dinner.

Finally, I’ve got all my new clothes!!! Just need to get a pair of new shoes or two.

Thank you, dear, for the shopping spree! :D


ADVANCED FOREX TRADING IDEAS


The Forex market is that place where a country’s currency is trader for another country’s currency. Trading currencies take place all over the world around the clock so you can definitely say that this market is one that never closes. Moreover, with billions, and even trillions, behind all these transactions that take place, there is clearly much potential when it comes to profit in Forex trading.

With the advent of computer technology, the Internet, communication technology, and software development, any trader can actively participate in the market as long as he or she has a computer and a reliable Internet connection. However, to do well in the market, you have to take it upon yourself to monitor your trading activities day in and day out. This does not give you that much time to do anything else. With your automatic software, you can then proceed to doing whatever you want to do. You can even choose to hold a second job, so as long as you have enough time to commit.

Moreover, this automatic software allows you to do some trading of yourself without having to be an expert trader at all. All you really need to do is configure the settings of your software so that it can do the trading for you. Moreover, when you get a managed account, you can have either a trading account or a human expert do the trading for you. Ultimately, the decision as to which trades to execute would still be in your hands, even if you have a program or human trader doing the trading for you.

Moreover, having automatic software allows you to do more trades and handle more platforms. You can even manage multiple accounts via your multiple platforms. This is something that was never possible with traditional and manual trading before. Through your automatic Forex software, you would no longer miss out on any trade that is deemed profitable, even if you are not logged on to your computer. Lastly, automatic software is void of human emotions that human traders would inevitably have. Thus, you do not have to contend with mixed human emotions that can lead you to make subjective and costly decisions with the trades you make.

Trading systems that operate automatically


The automation of forex trading has resulted in gaining in its popularity. Small and mid level investors are now getting into the foray of what was once only dominated by banks and other large financial institutions. This is the market where one currency is traded against currency of another country. With trillions of dollars being traded twenty four hours a day, it makes this one of the largest and most dynamic financial markets.

Now that there is internet and advanced computer technology in place, any one with an internet connection, a forex trading account and good brokering knowledge can trade in forex. This global market place is open twenty four hours a day so if you want to stay abreast of market developments, you must keep a constant watch. You could choose a currency and its price before hand with the help of these automated systems. All you require is your seed money and a broker because your buy and sell orders can be executed in no time.

Wednesday, June 9, 2010

Join Us in Our Quest for the Ultimate Forex Trading Expert Advisor

How To Find The 4 Low-Risk, High-Potential
.S. Government Required Disclaimer - Stocks, forex, futures, and options trading is not appropriate for everyone. There is a substantial risk of loss associated with trading these markets. Losses can and will occur. No system or methodology has ever been developed that can guarantee profits or ensure freedom from losses. No representation or implication is being made that using this methodology or system or the information in this letter will generate profits or ensure freedom from losses.

HYPOTHETICAL OR SIMULATED PERFORMANCE RESULTS HAVE CERTAIN LIMITATIONS. UNLIKE AN ACTUAL PERFORMANCE RECORD, SIMULATED RESULTS DO NOT REPRESENT ACTUAL TRADING. ALSO, SINCE THE TRADES HAVE NOT BEEN EXECUTED, THE RESULTS MAY HAVE UNDER-OR-OVER COMPENSATED FOR THE IMPACT, IF ANY, OF CERTAIN MARKET FACTORS, SUCH AS LACK OF LIQUIDITY. SIMULATED TRADING PROGRAMS IN GENERAL ARE ALSO SUBJECT TO THE FACT THAT THEY ARE DESIGNED WITH THE BENEFIT OF HINDSIGHT. NO REPRESENTATION IS BEING MADE THAT ANY ACCOUNT WILL OR IS LIKELY TO ACHIEVE PROFIT OR LOSSES SIMILAR TO THOSE SHOWN.

Here’s A Quick Breakdown Of FAP Turbo’s Features:



I got most of my online forex training from the brilliant fx500 club live online forex school. I cannot recommend them highly enough.

Wow what a day today has turned out to be so far, quality trend trades within h4 swings all over the place, I wanted to take all of them but money management and common sense only allows me to risk 2% of my relatively small account per trade. I traded gbp/jpy and swissy (usd/chf) but there were valid trades on almost all the currency pairs I trade. Most are retracements on the H4 charts against the daily trends, I am loving those H4 charts more and more these days.

I called these swing trades because they are high probability , mostly counter trend trades against the daily trends

Forex fap turbo is one of the oldest expert advisors in the foreign exchange market and is still very popular today. Fap turbo comes in different languages. There are English, Spanish and Chinese versions of this forex trading software.

There is a popular saying that the poor and the rich are made during tough times. The forex trading market fluctuates like mad and any good foreign exchange trader will tell you that it is a paradise meant only for brave traders. It is during the times when the market fluctuates that most profits are made