see DUDEST +75 aboveAGT wrote:As I know where does not exist any doc - so far. May be you write phil some special questions.
All in all read post #1 - later on "niepce" posted setfiles which are in use - to my knowledge no more actual settings exist. The latest version is v37 ... many members use even v36. For me the most import question is the availability of a bugfree Empty4 version. Not sure even so far: does it exist here in this thread ? Otherwise no one can get the good results phil is getting all the time (using his Windev approach).
Macd Stochastic Fractal MA5/25 Daily Marylin
-
phil_trade
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
-
ymleong
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
Hi AGTAGT wrote:The latest version is v37 ..
Post 1 is still v36, pls give me the link to download v37.
- milanese
- TechAdmin
- Posts: 3293
- Joined: Wed Jan 09, 2013 9:02 am
- Location: btr rdx, r8 +
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
Hi
you will find it herehttp://www.stevehopwoodforex.com/phpBB3 ... &start=690 but it is still beta..
Cheers
Tommaso
you will find it herehttp://www.stevehopwoodforex.com/phpBB3 ... &start=690 but it is still beta..
Cheers
Tommaso
Global Prime is the official SHF broker 
Searching for Servers and Workstations with individual configuration?
Just PM
Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
Searching for Servers and Workstations with individual configuration?
Just PM
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
-
ymleong
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
milanese wrote:Hi
you will find it herehttp://www.stevehopwoodforex.com/phpBB3 ... &start=690 but it is still beta..
Cheers![]()
Tommaso
- matt_32
- Trader
- Posts: 204
- Joined: Tue Apr 03, 2012 8:51 am
- Location: Crete, Greece
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
Radar wrote:Hey Matt,
The option is already there... "UseFixedLot" set it to risk 0.00004 of your balance, (or 0.01 lots).matt_32 wrote:@Philippe
Can we have the lot size auto calculated for every trade (ie as % of balance)
Matt
Have fun!
Radar =8^)
@ Radar
How do I set it?
Matt
"Wise men speak because they have something to say; Fools because they have to say something." - Plato 347 BC
- matt_32
- Trader
- Posts: 204
- Joined: Tue Apr 03, 2012 8:51 am
- Location: Crete, Greece
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
matt_32 wrote:Radar wrote:Hey Matt,
The option is already there... "UseFixedLot" set it to risk 0.00004 of your balance, (or 0.01 lots).matt_32 wrote:@Philippe
Can we have the lot size auto calculated for every trade (ie as % of balance)
Matt
Have fun!
Radar =8^)
@ Radar
How do I set it?
Matt
I have 10700$ in my account
usefixlot = false
fixedlot is set to 0.000010.
Despite that the system places 0,42 lot orders.
Am I missing something
Matt
"Wise men speak because they have something to say; Fools because they have to say something." - Plato 347 BC
- milanese
- TechAdmin
- Posts: 3293
- Joined: Wed Jan 09, 2013 9:02 am
- Location: btr rdx, r8 +
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
Hi Matt,
in int start() you have to change the 0.00004 to what ever you want or to define a new double variable for that ...
Cheers
Tommaso
in int start() you have to change the 0.00004 to what ever you want or to define a new double variable for that ...
Cheers
Tommaso
Code: Select all
if(UseFixedLot==false){
lot=AccountBalance()*0.00004;
// if((StringFind(Symbol(),"XAUUSD",0)!=-1)&&(Digits==3)) lot*=0.1;
if (lot<0.01) lot=0.01;
}
else lot=FixedLot;Global Prime is the official SHF broker 
Searching for Servers and Workstations with individual configuration?
Just PM
Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
Searching for Servers and Workstations with individual configuration?
Just PM
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
-
Radar
- Trader
- Posts: 437
- Joined: Fri Mar 23, 2012 5:39 pm
- Location: Round the bend ;)
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
Hey Matt,
Set FixedLot to true, and you can set your lotsize yourself...
Set FixedLot to false, and lotsize is calculated based on your balance... As Milanese said, lot size is worked out at 0.00004 x Balance, so 0.42 lots is pretty safe
Have fun!
Radar =8^)
I explained the setting back to front in my first reply...matt_32 wrote:
I have 10700$ in my account
usefixlot = false
fixedlot is set to 0.000010.
Despite that the system places 0,42 lot orders.
Am I missing something
Matt
Set FixedLot to true, and you can set your lotsize yourself...
Set FixedLot to false, and lotsize is calculated based on your balance... As Milanese said, lot size is worked out at 0.00004 x Balance, so 0.42 lots is pretty safe
Have fun!
Radar =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
StackManV2
- milanese
- TechAdmin
- Posts: 3293
- Joined: Wed Jan 09, 2013 9:02 am
- Location: btr rdx, r8 +
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
Hi Matt and all,
attached a version that calculates the lotsize automatic if it is set to 0, using too for calculation the SL_MAX value.
Cheers
Tommaso
attached a version that calculates the lotsize automatic if it is set to 0, using too for calculation the SL_MAX value.
Cheers
Tommaso
You do not have the required permissions to view the files attached to this post.
Global Prime is the official SHF broker 
Searching for Servers and Workstations with individual configuration?
Just PM
Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
Searching for Servers and Workstations with individual configuration?
Just PM
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
- matt_32
- Trader
- Posts: 204
- Joined: Tue Apr 03, 2012 8:51 am
- Location: Crete, Greece
Re: Macd Stochastic Fractal MA5/25 Daily Marylin
Thank you guys.
Matt
Matt
"Wise men speak because they have something to say; Fools because they have to say something." - Plato 347 BC