Awesome + SS version

The place for Peaky and Peaky-related stuff.
Post Reply
hilavoku
Trader
Posts: 170
Joined: Mon May 28, 2012 7:54 pm
Location: Germany

Awesome + SS version

Post by hilavoku »

Here is my overview:
GBPJPY is not the best.
You do not have the required permissions to view the files attached to this post.
ymleong

Awesome + SS version

Post by ymleong »

hilavoku » Mon Jun 04, 2018 9:31 pm wrote:Here is my overview:
GBPJPY is not the best.
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? :?
User avatar
c1borg
Trader
Posts: 456
Joined: Sun Aug 14, 2016 5:09 pm

Awesome + SS version

Post by c1borg »

You might have a good case for dropping some pairs, this is from V3 since the start notice the top 4 loosers :youknow:
Capture.PNG
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

Post by chrisdk2018 »

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? :?
I think you have to modify the code.
ymleong

Awesome + SS version

Post by ymleong »

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?
barry
Trader
Posts: 81
Joined: Thu Mar 01, 2012 5:12 am

Awesome + SS version

Post by barry »

c1borg » Mon Jun 04, 2018 2:00 pm wrote:Baskets closed today on my setups :good: remember....

From post 1, and yes we have survived NFP before.
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.
Has anybody found any bugs in version 1c :youknow: as I am thinking of switching to the newer 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.
ymleong

Awesome + SS version

Post by ymleong »

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)
ymleong

Awesome + SS version

Post by ymleong »

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
isabek
Trader
Posts: 41
Joined: Wed Jun 28, 2017 10:46 am

Awesome + SS version

Post by isabek »

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)
In both versions in JumpingStopLoss() module, for SELL orders, breakeven stop lacks BreakEvenProfit.

for BUYs (line 8)

Code: Select all

stop = NormalizeDouble(OrderOpenPrice() + (BreakEvenProfit / factor), digits);
for SELLs (line 33)

Code: Select all

stop = OrderOpenPrice();
chrisdk2018
Trader
Posts: 37
Joined: Tue Jun 07, 2016 10:18 am

Awesome + SS version

Post by chrisdk2018 »

c1borg » Mon Jun 04, 2018 4:30 am wrote:Baskets closed today on my setups :good: remember....

From post 1, and yes we have survived NFP before.
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.
Has anybody found any bugs in version 1c :youknow: as I am thinking of switching to the newer version?
I don't think the basket jump worked in the test I did...also it was printing too much stuff in the journal.

Maybe one could take the basket jump code from simpleallpairmanager as that is working.
Post Reply

Return to “Peaky forum”