cvuforex.com
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A place where serious Forex trading efforts meet! Back to Home page of FxBussiness.com

Latest topics
» Mar 2023 project
Automation trading EmptyFri Apr 14, 2023 2:20 am by Admin

» Subscription Key for text to speech
Automation trading EmptyFri Mar 31, 2023 9:29 pm by Admin

» Mar 2023 - Forex filing
Automation trading EmptyMon Mar 06, 2023 12:13 pm by Admin

» MT4 Coding
Automation trading EmptySun Mar 05, 2023 10:50 pm by Admin

» EA that work with scripts & Indicators
Automation trading EmptySun Mar 05, 2023 10:49 pm by Admin

» Trade Assistance EA
Automation trading EmptySun Mar 05, 2023 10:49 pm by Admin

» New strategy
Automation trading EmptySun Mar 05, 2023 10:48 pm by Admin

» From other forum
Automation trading EmptyThu Mar 17, 2022 2:19 pm by Admin

» Trading Notes
Automation trading EmptyThu Mar 17, 2022 1:37 pm by Admin

Test only

You are not connected. Please login or register

Automation trading

4 posters

Go down  Message [Page 1 of 1]

1Automation trading Empty Automation trading Thu Jul 29, 2010 9:22 am

Admin

Admin
Admin

When we think about automation, what are the intention and/or expectation? Why do we pay effort into this?
I think, these are some of the benefit:
1/ 100% rules based, 100% disciplined.
2/ 100% online time or almost so.
3/ Can trade at very high frequency if needed.
4/ Can collect data for creating new strategies much faster than by bare eyes, watching the real time price movements.
5/ Can incoporate with other applications for further actions (for example: generate signal, send to others or upload data to an ftp site,...) automatically.

That are a lot of benefits I think. But it is not easy at all (atleast to me). It requires a lot of efforts and learning.

Still, it is a good path to persuit.

https://fxbusiness.forumotion.com

2Automation trading Empty Re: Automation trading Thu Jul 29, 2010 10:17 am

Admin

Admin
Admin

So the main thing is to create a program to trade for us. We need to analize in very detail how trading process looks like before any further actions.

https://fxbusiness.forumotion.com

3Automation trading Empty How trading decisions are made? Fri Sep 10, 2010 4:42 pm

Admin

Admin
Admin

Why do we open a buy trade? Why do we open a sell trade? Why do we close a buy trade? Why do we close a sell trade? Why do we hedge? Why do we take a loss?

Trading is a process of collecting information, making descision, and collecting information and making descision,... in order to have the equity grows.

What kind of descision we can take? Many, but we can classify them into only severall types:

1/ Exposre>=0, increase it: Buy certain unit;
2/ Exposure>=0, reduce it: Close certain Buy trades, or Sell certain units that is smaller than current Exposure;
3/ Exposure<=0, increase it: Sell certain units;
4/ Exposure<=0, reduce it: Close certain Sell trades, or Buy certain units that is smaller than current absolute value of Exposure;
5/ Add fund;
6/ Withdraw fund.

There should be 2 separate things to be considered in making descision: the Market and the Account Status.

Collecting Market's information, analyzing it and predict the price move is done by Signal Generator.
1/ When the Signal Generator "think" that price is going up--> Signal = "Buy";
2/ When the Signal Generator "think" that price is going down--> Signal = "Sell";

Collecting Account's information, analyzing it to allow/disallow using more margin or to require reducing margin is done by Account Status module.
1/ If Pip Value is too high and/or PTMC (pip to margin call) is too small then no more margin is allow or even margin has to reduce.
2/ 1/ If Pip Value is still within limit and PTMC is still larger than limit then more margin is allow to be used.



https://fxbusiness.forumotion.com

4Automation trading Empty Re: Automation trading Fri Sep 10, 2010 7:38 pm

Admin

Admin
Admin

Put it in code:

if Signal=="Buy"
if (Exposure>=0 and PV<PV_Max and abs(PTMC)>PTMC_Min) Buy(Minordersize);
if (Exposure>=0 and (PV>=PV_Max or abs(PTMC)<=PTMC_Min) DoNothing;
if (Exposure<0 and abs(PV)<PV_Max and PTMC>PTMC_Min) Buy(-Exposure+Minordersize);
if (Exposure<0 and (abs(PV)>=PV_Max or abs(PTMC)<=PTMC_Min) Buy or CloseSell some Units;

https://fxbusiness.forumotion.com

5Automation trading Empty Re: Automation trading Sat Sep 18, 2010 2:30 pm

zero


Level 1
Level 1

anybody in this place?

hello?

Automation trading Widget?id=50685&type=1&color=white

6Automation trading Empty Re: Automation trading Sat Sep 18, 2010 4:27 pm

RJ

RJ
Level 3

Admin wrote:Why do we open a buy trade? Why do we open a sell trade? Why do we close a buy trade? Why do we close a sell trade? Why do we hedge? Why do we take a loss?

Trading is a process of collecting information, making descision, and collecting information and making descision,... in order to have the equity grows.

What kind of descision we can take? Many, but we can classify them into only severall types:

1/ Exposre>=0, increase it: Buy certain unit;
2/ Exposure>=0, reduce it: Close certain Buy trades, or Sell certain units that is smaller than current Exposure;
3/ Exposure<=0, increase it: Sell certain units;
4/ Exposure<=0, reduce it: Close certain Sell trades, or Buy certain units that is smaller than current absolute value of Exposure;
5/ Add fund;
6/ Withdraw fund.

There should be 2 separate things to be considered in making descision: the Market and the Account Status.

Collecting Market's information, analyzing it and predict the price move is done by Signal Generator.
1/ When the Signal Generator "think" that price is going up--> Signal = "Buy";
2/ When the Signal Generator "think" that price is going down--> Signal = "Sell";

Collecting Account's information, analyzing it to allow/disallow using more margin or to require reducing margin is done by Account Status module.
1/ If Pip Value is too high and/or PTMC (pip to margin call) is too small then no more margin is allow or even margin has to reduce.
2/ 1/ If Pip Value is still within limit and PTMC is still larger than limit then more margin is allow to be used.




Hi Admin,

I found this very interesting, very systematic, very logical.

I will keep watching.
Thank you for sharing with us.

RJ

7Automation trading Empty Re: Automation trading Sat Sep 18, 2010 5:09 pm

Admin

Admin
Admin

zero wrote:anybody in this place?

hello?

Automation trading Widget?id=50685&type=1&color=white

Hello zero,

Welcome you to this small forums. We hope you will like this place and stay active. We are please to have you.

To whom did not know yet, zero is well known at Oanda forums.

Cheer!



Last edited by Admin on Sat Sep 18, 2010 5:51 pm; edited 2 times in total

https://fxbusiness.forumotion.com

8Automation trading Empty Re: Automation trading Sat Sep 18, 2010 5:20 pm

KingInvestor


Admin

zero wrote:anybody in this place?

hello?

Automation trading Widget?id=50685&type=1&color=white

Hello zero,

Welcome to the forums although I am new too Smile.
Your account gain real big. I will keep watching your account. I hope I can find some good trader here.

Keep it up.

King

Sponsored content



Back to top  Message [Page 1 of 1]

Similar topics

-

» Trading Notes
» Trading rules

Permissions in this forum:
You cannot reply to topics in this forum