Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > Dolly


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (249) Thread Tools Display Modes
  #671 (permalink)  
Old 10-05-2007, 10:14 PM
BORISTABBY5's Avatar
Junior Member
 
Join Date: Feb 2006
Posts: 2
BORISTABBY5 is on a distinguished road
Dolly Graphics # 10 .... Overprint of Lines

Hello CJA, This indicator is so beautiful that i am going to print it on slick paper and frame it!

Meanwhile, i was going to ask how to prevent the latter part of a line from printing on top of the middle part of the same line?

I see you have offered code called "lines". Does it solve the overprint problem, and if so, how does one integrate it into the main body of code?

apparently Dolly #11 provides Email capability? Where may i find it for downloading?

Regards,

Bob (Paid subscriber)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #672 (permalink)  
Old 10-06-2007, 12:21 AM
cja's Avatar
cja cja is offline
Senior Member
 
Join Date: Apr 2006
Posts: 578
cja is on a distinguished road
Dolly email

Quote:
Originally Posted by BORISTABBY5 View Post
Hello CJA, This indicator is so beautiful that i am going to print it on slick paper and frame it!

Meanwhile, i was going to ask how to prevent the latter part of a line from printing on top of the middle part of the same line?

I see you have offered code called "lines". Does it solve the overprint problem, and if so, how does one integrate it into the main body of code?

apparently Dolly #11 provides Email capability? Where may i find it for downloading?

Regards,

Bob (Paid subscriber)
Hi
I am not sure what you mean by the overprint problem however the Email Dolly indicator can be found on the 2nd post, the lines indicator is merely a very simple version of Dolly using the same type of code so there is nothing in the code that will help you with your percieved problem by using that.

cja
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #673 (permalink)  
Old 10-06-2007, 06:15 PM
mesis's Avatar
Junior Member
 
Join Date: Sep 2007
Posts: 1
mesis is on a distinguished road
download wss 9.4.2

bisa kirimkan aku wss 9.4.2 fv,thank's ya
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #674 (permalink)  
Old 10-06-2007, 10:04 PM
Junior Member
 
Join Date: Sep 2007
Posts: 18
pmafia is on a distinguished road
Quote:
Originally Posted by cja View Post
Hi
I am not sure what you mean by the overprint problem however the Email Dolly indicator can be found on the 2nd post, the lines indicator is merely a very simple version of Dolly using the same type of code so there is nothing in the code that will help you with your percieved problem by using that.

cja

Hi CJA could you please help answer my questions on the previous page? page 67, my second post?

Thanks...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #675 (permalink)  
Old 10-06-2007, 11:26 PM
cja's Avatar
cja cja is offline
Senior Member
 
Join Date: Apr 2006
Posts: 578
cja is on a distinguished road
Quote:
Originally Posted by pmafia View Post
Dolly Graphics_v11-GMT-Email.mq4

How to set email pip intervals? The default is set to email you every 5pips or dolly buy/sell zone. I would like to adjust this, how would I? which variables would i change, some days i might need it at 10, others at 15. Could somebody explain please?


1) what does 100% D/AV mean? Im guessing its Daily Average?

2) how are the buy sell area's calculated? Something about PP and the past 20 days daily average ? Can somebody please post in more detail how these are calculated?

3) what are those 4 trendlines? How do you use them? they are called dollytime 10,20,30,40? The vertical lines. How do i remove them?

4) whats the deal with GMTshift? If i change it to -5 broker in toronto. the OPENLINE is set to open at -5GMT? if thats the case the CHANGE line is still different it still uses GMTshift=0. Why doesnt the change value change based on the GMTSHIFT? Once I change the GMTSHIFT value, the change value doesnt change with it, it looks all wrong. How can this be edited/fixed?

GOOD JOB GUYS, GREAT WORK!
Hi
Sorry i must have missed your original requests

How to set email pip intervals?
if(Ask>(B2-5*Point)&&Ask<(B2+0*Point))
if(Bid<(S1+5*Point)&&Bid>(S1-0*Point))

As you can see by the code the Alert is set to GO at either 5 pips above the SELL areas & 5 pips below the BUY areas. You will have to change the highlighted numbers to change how early/late the Alert sounds

1/ Yes that is the Daily Average, it is based on the Average for the last 20/10/5 days & yesterday divided by 4 as shown by the example line of code double AV = (ONE+FIVE+TEN+TWENTY)/4;

2/ The SELL AREA/BUY AREA/1st BUY Target/1st Sell Target/2nd Target's are based on setting trades 20/20/10 above/below the Daily OPEN, i can't remember how these numbers were arrived at but from memory it was based on trial & error & these distances from the OPEN proved to work the best for consistent results. the colored panels further above/below the BUY/SELL areas are based on the previously Daily average figures.
I have found that if MACD/RSI( or whichever indicators you use for trend ) 1HR & H4 are against each other price will stay within the 100% Daily Average if the H1/H4 are both in the same direction then often the Daily Average is exceeded.

NOTE; this indicator is set to the Daily OPEN by default but can be also set to the Daily PIVOT by changing this line
Using_OpenGraphics = true; Sets up for the OPEN
Using_OpenGraphics = false; Sets up for the PIVOT


3/ The Dolly Time lines are the EUROPE OPEN/LONDON OPEN/ US OPEN/ EUROPE CLOSE & i guess you have downloaded a template with them included, you should be able to remove them by deleting the Dolly Times indicator. If you select Show_Daily_Trade in this indicator the Text will appear just below the Dolly trade details on the lower left of your chart showing the comments for the lines.

4/ The Change feature was added by someone else so i have checked it and found that the GMT needed to be added to that line of code, so thank you for spotting that , i have fixed it & will repost the indicator on the 2nd Post.

I hope this has help answer your questions to your satisfaction

cja
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #676 (permalink)  
Old 10-07-2007, 04:16 PM
Junior Member
 
Join Date: Sep 2007
Posts: 18
pmafia is on a distinguished road
Quote:
Originally Posted by cja View Post
Hi
Sorry i must have missed your original requests

How to set email pip intervals?
if(Ask>(B2-5*Point)&&Ask<(B2+0*Point))
if(Bid<(S1+5*Point)&&Bid>(S1-0*Point))

As you can see by the code the Alert is set to GO at either 5 pips above the SELL areas & 5 pips below the BUY areas. You will have to change the highlighted numbers to change how early/late the Alert sounds

1/ Yes that is the Daily Average, it is based on the Average for the last 20/10/5 days & yesterday divided by 4 as shown by the example line of code double AV = (ONE+FIVE+TEN+TWENTY)/4;

2/ The SELL AREA/BUY AREA/1st BUY Target/1st Sell Target/2nd Target's are based on setting trades 20/20/10 above/below the Daily OPEN, i can't remember how these numbers were arrived at but from memory it was based on trial & error & these distances from the OPEN proved to work the best for consistent results. the colored panels further above/below the BUY/SELL areas are based on the previously Daily average figures.
I have found that if MACD/RSI( or whichever indicators you use for trend ) 1HR & H4 are against each other price will stay within the 100% Daily Average if the H1/H4 are both in the same direction then often the Daily Average is exceeded.

NOTE; this indicator is set to the Daily OPEN by default but can be also set to the Daily PIVOT by changing this line
Using_OpenGraphics = true; Sets up for the OPEN
Using_OpenGraphics = false; Sets up for the PIVOT


3/ The Dolly Time lines are the EUROPE OPEN/LONDON OPEN/ US OPEN/ EUROPE CLOSE & i guess you have downloaded a template with them included, you should be able to remove them by deleting the Dolly Times indicator. If you select Show_Daily_Trade in this indicator the Text will appear just below the Dolly trade details on the lower left of your chart showing the comments for the lines.

4/ The Change feature was added by someone else so i have checked it and found that the GMT needed to be added to that line of code, so thank you for spotting that , i have fixed it & will repost the indicator on the 2nd Post.

I hope this has help answer your questions to your satisfaction

cja

Thank you very much, you have basically answered all of my questions and hopefully help some other people out aswell! Thanks again, keep up the great work!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #677 (permalink)  
Old 10-08-2007, 07:03 PM
BORISTABBY5's Avatar
Junior Member
 
Join Date: Feb 2006
Posts: 2
BORISTABBY5 is on a distinguished road
Here are a couple examples of overprint

Quote:
Originally Posted by cja View Post
Hi
I am not sure what you mean by the overprint problem however the Email Dolly indicator can be found on the 2nd post, the lines indicator is merely a very simple version of Dolly using the same type of code so there is nothing in the code that will help you with your percieved problem by using that.

cja
Hi CJA, (You deserve upper case)

Sorry i do not know how to send screen images, so i will try to describe the overprints. They appear to be variable amounts that are printed over "in-variable" lines.

Dolly #11, GBP/JPY, H1: 239.20 is printed over "m @"
(Buy Stop-1 line)
Dolly # 11,GBP/JPY, H1: 238.80 is printed over "SL @"
(TP line)

(Contrasting colors can be deciphered, but where the colors are close in hue, it is sometimes hard to read. However, i am sure familiarity with Dolly will solve the problem.)

It is the same on different charts and times.

Where a line has two variable amounts, the first is OK, in other words, fits into the blank that is left for it. But where there are two variable amounts, the second always overprints.

Hope this clarifies my observations,

Regards, Bob
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #678 (permalink)  
Old 10-10-2007, 06:34 PM
Junior Member
 
Join Date: Sep 2007
Posts: 18
pmafia is on a distinguished road
Hi CJA,

I have another question, why is the change for m1-30 the same, and the changes for H1, H4, Day1 all different? I noticed the OPENS are very different when my GMTshift = -5

Also CJA, the GMT value i put back to zero m5, 15, 30, H1, h4 are the same but m1 and d1 and w1 are all different. Something is fishy? Could you possibly take a look at the change code again and maybe rewrite it? I trade use some strategies on change, and this would be of great help!



Thanks a BUNCH!

Last edited by pmafia; 10-10-2007 at 09:09 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #679 (permalink)  
Old 10-11-2007, 01:52 AM
cja's Avatar
cja cja is offline
Senior Member
 
Join Date: Apr 2006
Posts: 578
cja is on a distinguished road
Quote:
Originally Posted by pmafia View Post
Hi CJA,

I have another question, why is the change for m1-30 the same, and the changes for H1, H4, Day1 all different? I noticed the OPENS are very different when my GMTshift = -5

Also CJA, the GMT value i put back to zero m5, 15, 30, H1, h4 are the same but m1 and d1 and w1 are all different. Something is fishy? Could you possibly take a look at the change code again and maybe rewrite it? I trade use some strategies on change, and this would be of great help!



Thanks a BUNCH!
i do not have access to my trading platform as i am away from home at present, the code for GMT was supplied by FithElement and i have noticed that PIVOTS and the OPEN could alter by a couple of pips from M1 to M5 and then settled down up to H4 however the change code is based on the daily figures so if you are going onto Weekly, Monthly or even daily like any daily Pivot set up the figures will i suspect be wrong, perhaps the change code needs to have a lock out for the higher timeframes such as is put in pivot indicators, anyway when i get back i will have a look and see if rewriting the code can fix your issues. As far as the OPENS being very different when you use GMT -5 do you mean each timeframe gives a different OPEN or that the OPEN is just different from the GMT 0 setting??? This has not really been an issue in the past as most people using Dolly trade using M5 to H1 not many use the higher timeframes as Dolly is designed to work for the current day on M15 and M5 for entries for trades over the next few hours not so much for longer term trades going into days.

cja
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #680 (permalink)  
Old 10-12-2007, 04:45 PM
Junior Member
 
Join Date: Sep 2007
Posts: 18
pmafia is on a distinguished road
Quote:
Originally Posted by cja View Post
i do not have access to my trading platform as i am away from home at present, the code for GMT was supplied by FithElement and i have noticed that PIVOTS and the OPEN could alter by a couple of pips from M1 to M5 and then settled down up to H4 however the change code is based on the daily figures so if you are going onto Weekly, Monthly or even daily like any daily Pivot set up the figures will i suspect be wrong, perhaps the change code needs to have a lock out for the higher timeframes such as is put in pivot indicators, anyway when i get back i will have a look and see if rewriting the code can fix your issues. As far as the OPENS being very different when you use GMT -5 do you mean each timeframe gives a different OPEN or that the OPEN is just different from the GMT 0 setting??? This has not really been an issue in the past as most people using Dolly trade using M5 to H1 not many use the higher timeframes as Dolly is designed to work for the current day on M15 and M5 for entries for trades over the next few hours not so much for longer term trades going into days.

cja
Thanks for the quick reply CJA,

When I used -5 GMT the opens are different for H1, H4 D1, ect... however, the other TF are the same.

When I use GMT - the open for m1 is is different but m5-h4 i think is the same. I don't understand that?

GMT -5 and GMT 0 for the TF's that are not off which are mentioned above are the same however. IE they are all 9950, but the ones that I'm having problems with would be 9920. I'm sure when you get back on the computer you will know what im talking about if you change the GMT and look at the different TF's.

Is there an indicator around which only has Open High Low Close and Change? This could be extremely beneficial and possibly solve a lot of problems.


Thanks again CJA.

Last edited by pmafia; 10-12-2007 at 04:52 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
Dolly, dolly graphics 12, gmacd2, gmacd, Dolly Graphics #12, dolly graphic, digistoch, trading, Dolly 2nd Clone, ang_AutoCH_HL-v1, Dolly 2nd Clone Project, ANCOLL, find trading systems for forex based on daily open level, forex, dolly ea, gmacd mq4, WSS 9.4, GMACD signal

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/dolly/5101-subthread-dolly-2nd-clone-project.html
Posted By For Type Date
DOLLY winwinsolution.org - Page 15 - Nogold.com This thread Refback 09-14-2008 03:52 PM
据说是世界四大著名交易系统之一的Dolly系统[转] - mt4编程与智能交易系统 - 领域外汇论坛 —外汇论坛|外汇开户|外汇保证金|FXSOL开户 This thread Refback 08-30-2008 06:06 AM
??????? WSS ? ????????? FxTrend - ForexPeoples-??????????? ????? ? ????????????? ???????? ????? ??????. Post #0 Refback 08-26-2008 12:35 PM
据说是世界四大著名交易系统之一的Dolly系统[转] - mt4编程与智能交易系统 - 领域外汇论坛 —外汇论坛|外汇开户|外汇保证金|FXSOL开户 This thread Refback 08-22-2008 12:05 PM
DOLLY winwinsolution.org - Page 30 - Nogold.com This thread Refback 08-18-2008 04:28 PM
小懈褋褌械屑邪 WSS 懈 懈薪写懈泻邪褌芯褉 FxTrend - ForexPeoples-薪械蟹邪胁懈褋懈屑褘泄 褎芯褉褍屑 芯 屑械卸写褍薪邪褉芯写薪芯屑 胁邪谢褞褌薪芯屑 褉褘薪泻械 肖芯褉械泻褋. Post #3 Refback 08-05-2008 09:31 AM
Meta4 Indicator锝淔X Arty Chart This thread Refback 08-03-2008 04:51 PM
软滂赅蝾瘥 桃 4 - 义蹴梓羼觇 囗嚯桤 Forex This thread Refback 08-01-2008 11:20 PM
Mencari2 EA Dolly - Nogold.com This thread Refback 07-21-2008 05:53 PM
据说是世界四大著名交易系统之一的Dolly系统[转] - mt4编程与智能交易系统 - 领域外汇论坛 —外汇论坛|外汇开户|外汇保证金|FXSOL开户 This thread Refback 07-08-2008 04:33 PM
Pips Home: February 2008 This thread Refback 06-25-2008 07:14 AM
Dolly Signal - 31/08/2007 Morning PIPS Journey This thread Refback 06-22-2008 11:01 AM
Forex Signal Winning Solution Full Version Free Download - GoldAge Forums This thread Refback 06-18-2008 06:07 PM
小懈褋褌械屑邪 WSS 懈 懈薪写懈泻邪褌芯褉 FxTrend - ForexPeoples-薪械蟹邪胁懈褋懈屑褘泄 褎芯褉褍屑 芯 屑械卸写褍薪邪褉芯写薪芯屑 胁邪谢褞褌薪芯屑 褉褘薪泻械 肖芯褉械泻褋. Post #3 Refback 06-17-2008 02:11 PM
Dolly 2nd Clone Project This thread Refback 05-27-2008 07:24 PM
OzFX Squeeze-More Strategy - Page 164 This thread Refback 05-06-2008 05:27 PM
Dolly 2nd Clone Project This thread Refback 05-05-2008 10:52 AM
小懈褋褌械屑邪 WSS 懈 懈薪写懈泻邪褌芯褉 FxTrend - 肖芯褉褍屑 褌褉械泄写械褉芯胁 ForexPeoples Post #3 Refback 05-01-2008 09:18 PM
Indicator-銉堛儸銉炽儔锝淔X Arty Chart This thread Refback 04-23-2008 04:08 PM
OzFX Squeeze-More Strategy - Page 164 This thread Refback 04-17-2008 06:20 PM
OzFX Squeeze-More Strategy - Page 164 This thread Refback 04-17-2008 04:08 PM
OzFX Squeeze-More Strategy - Page 164 This thread Refback 04-17-2008 04:05 PM
OzFX Squeeze-More Strategy - Page 164 This thread Refback 04-17-2008 03:59 PM
FRESH FOREX SIGNAL - Dedicated To Forex 'Newbie' Trader - FXOpen forex forum - forex review - trading methods - education - analytics This thread Refback 04-16-2008 09:28 PM
软滂赅蝾瘥 桃 4 - 义蹴梓羼觇 囗嚯桤 Forex This thread Refback 04-14-2008 08:14 AM
Subthread: Dolly 2nd Clone Project - Page 2 - Forex Trading This thread Refback 04-08-2008 06:57 AM
小懈褋褌械屑邪 WSS 懈 懈薪写懈泻邪褌芯褉 FxTrend - 肖芯褉褍屑 褌褉械泄写械褉芯胁 ForexPeoples Post #3 Refback 04-04-2008 03:38 PM
小懈褋褌械屑邪 WSS 懈 懈薪写懈泻邪褌芯褉 FxTrend - 肖芯褉褍屑 褌褉械泄写械褉芯胁 ForexPeoples Post #3 Refback 04-03-2008 07:39 PM