Here is my overview:
GBPJPY is not the best.
Awesome + SS version
-
hilavoku
- Trader
- Posts: 170
- Joined: Mon May 28, 2012 7:54 pm
- Location: Germany
Awesome + SS version
You do not have the required permissions to view the files attached to this post.
-
ymleong
Awesome + SS version
thanks a lot guys, can anyone give me suggestions on how to avoid Fri trading? I could set it up on copier but would be great if EA allows some sorta of settings. My friend was suggesting maybe change the weekly profit target?hilavoku » Mon Jun 04, 2018 9:31 pm wrote:Here is my overview:
GBPJPY is not the best.
- c1borg
- Trader
- Posts: 456
- Joined: Sun Aug 14, 2016 5:09 pm
Awesome + SS version
You might have a good case for dropping some pairs, this is from V3 since the start notice the top 4 loosers :youknow:
You do not have the required permissions to view the files attached to this post.
-
chrisdk2018
- Trader
- Posts: 37
- Joined: Tue Jun 07, 2016 10:18 am
Awesome + SS version
I think you have to modify the code.ymleong » Mon Jun 04, 2018 2:12 pm wrote: thanks a lot guys, can anyone give me suggestions on how to avoid Fri trading? I could set it up on copier but would be great if EA allows some sorta of settings. My friend was suggesting maybe change the weekly profit target?
-
ymleong
Awesome + SS version
Guys n gals
I was considering whether the choice of brokerage affects the results as well due to the volume in that brokerage. Any inputs would be appreciated as I am using IC demo not GP demo. Would like to know whether anyone has purposely run other demo side by side w GP and do a comparison?
I was considering whether the choice of brokerage affects the results as well due to the volume in that brokerage. Any inputs would be appreciated as I am using IC demo not GP demo. Would like to know whether anyone has purposely run other demo side by side w GP and do a comparison?
-
barry
- Trader
- Posts: 81
- Joined: Thu Mar 01, 2012 5:12 am
Awesome + SS version
I think I have found a bug in v1c. I think letsarb wrote of having an option to require a minimum spacing of trades from whatever timeframe, but I don't think that's in v1c yet, so the only way I can see to require a minimum spacing is in each timeframe, in the "Take every signal inputs", and they don't seem to work. I have tried the minimum distance in pips, and the percentage of ATR, but neither one seems to have any effect. I hope this is accurate, and I hope it helps.c1borg » Mon Jun 04, 2018 2:00 pm wrote:Baskets closed today on my setupsremember....
From post 1, and yes we have survived NFP before.Has anybody found any bugs in version 1c :youknow: as I am thinking of switching to the newer version?The idea is to make X% per day (can go to as much as 3 days) and close the basket, then restart for next day.
-
ymleong
Awesome + SS version
Hi C1borg
So i am abt reaching my weekly target of 5% with 3.52% bank in. wondering eg if i bank in another 1.4% tomorrow (which it seems to be doing regularly everyday for last few days) it will put it at 4.92%. So comes Fri n awss checks that hmmmm...i have yet to reach 5% and started its happy journey. Will it close at 5% weekly target or still at 1% daily target? which is being check first? (that would mean Fri I may close with less than 1% if its checking on weekly target)
So i am abt reaching my weekly target of 5% with 3.52% bank in. wondering eg if i bank in another 1.4% tomorrow (which it seems to be doing regularly everyday for last few days) it will put it at 4.92%. So comes Fri n awss checks that hmmmm...i have yet to reach 5% and started its happy journey. Will it close at 5% weekly target or still at 1% daily target? which is being check first? (that would mean Fri I may close with less than 1% if its checking on weekly target)
-
ymleong
Awesome + SS version
Hi guys n gals,
Anyone got suggestion as to whats max bars in history n max bars in chart to be set at? I wanted to reduce Empty4 footprint n default setting of 512000, n 65000 seems a bit too over max. It should be sufficient for awss but not over or under in order to ensure it works well. Some forums suggest that for most EA 3000 (bars in chart) should be enuf. Would like to hear from mbrs here
Anyone got suggestion as to whats max bars in history n max bars in chart to be set at? I wanted to reduce Empty4 footprint n default setting of 512000, n 65000 seems a bit too over max. It should be sufficient for awss but not over or under in order to ensure it works well. Some forums suggest that for most EA 3000 (bars in chart) should be enuf. Would like to hear from mbrs here
-
isabek
- Trader
- Posts: 41
- Joined: Wed Jun 28, 2017 10:46 am
Awesome + SS version
Code: Select all
if (OrderType()==OP_BUY)
{
// First check if stop needs setting to breakeven
if (CloseEnough(stop, 0) || stop < OrderOpenPrice() )
{
if (bid >= OrderOpenPrice() + (BreakEven / factor))
{
stop = NormalizeDouble(OrderOpenPrice() + (BreakEvenProfit / factor), digits);
modify = true;
}//if (ask >= OrderOpenPrice() + (JumpingStop / factor))
}//if (CloseEnough(stop, 0) || stop<OrderOpenPrice())
// Increment stop by stop + JumpingStop.
// This will happen when market price >= (stop + JumpingStop)
if (!modify)
if (stop >= OrderOpenPrice())
if (bid >= stop + ((JumpingStop * 2) / factor) )
{
stop+= (JumpingStop / factor);
modify = true;
}// if (bid>= stop + (BreakEvenProfit / factor) && stop>= OrderOpenPrice())
}//if (OrderType()==OP_BUY)
if (OrderType()==OP_SELL)
{
// First check if stop needs setting to breakeven
if (CloseEnough(stop, 0) || stop > OrderOpenPrice())
{
if (bid <= OrderOpenPrice() - (BreakEvenProfit / factor))
{
stop = OrderOpenPrice();
modify = true;
}//if (ask <= OrderOpenPrice() - (JumpingStop / factor))
} // if (stop==0 || stop>OrderOpenPrice()
// Decrement stop by stop - JumpingStop.
// This will happen when market price <= (stop - JumpingStop)
if (!modify)
if (stop <= OrderOpenPrice())
if (bid <= stop - ((JumpingStop * 2) / factor) )
{
stop-= (JumpingStop / factor);
modify = true;
}// if (bid>= stop + (BreakEvenProfit / factor) && stop>= OrderOpenPrice())
}//if (OrderType()==OP_SELL)for BUYs (line 8)
Code: Select all
stop = NormalizeDouble(OrderOpenPrice() + (BreakEvenProfit / factor), digits);Code: Select all
stop = OrderOpenPrice();-
chrisdk2018
- Trader
- Posts: 37
- Joined: Tue Jun 07, 2016 10:18 am
Awesome + SS version
I don't think the basket jump worked in the test I did...also it was printing too much stuff in the journal.c1borg » Mon Jun 04, 2018 4:30 am wrote:Baskets closed today on my setupsremember....
From post 1, and yes we have survived NFP before.Has anybody found any bugs in version 1c :youknow: as I am thinking of switching to the newer version?The idea is to make X% per day (can go to as much as 3 days) and close the basket, then restart for next day.
Maybe one could take the basket jump code from simpleallpairmanager as that is working.