Forex
Google

Go Back   Forex Trading > Downloads > Tools and utilities
Forex Forum Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


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 Thread Tools Display Modes
  #71 (permalink)  
Old 03-30-2008, 08:18 PM
q8m2002 q8m2002 is offline
Member
 
Join Date: Mar 2008
Location: kuwait
Posts: 52
q8m2002 is on a distinguished road
hello

Quote:
Originally Posted by 4xCoder View Post
New version Clock 1_2. Now figures out the local time and time zone from the Windows system calls, instead of having to be configured. This will make configuration a lot simpler.

You will be to check the "Allow DLL Imports" in the Common Tab when you add this to a chart.

Hopefully this will fix the problems you are seeing where the time is not correct.
the time is not ok you have to cheak it
thank
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #72 (permalink)  
Old 03-30-2008, 08:31 PM
Michel Michel is offline
Senior Member
 
Join Date: Feb 2006
Posts: 502
Michel is on a distinguished road
I am using a very good and free one : Wclock world clock display
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #73 (permalink)  
Old 03-30-2008, 10:56 PM
fxbs fxbs is offline
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 1,592
fxbs is on a distinguished road
many clocks - links, zips

[ /url Полезная вещь - международные часы. - ProfiForex Traders Forum [ url]
russian fx site (Cyrillic Windows encoding) pictures, zips, links - anyway you don't have to see the text

Last edited by fxbs : 03-31-2008 at 12:17 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #74 (permalink)  
Old 03-30-2008, 11:06 PM
inzider's Avatar
inzider inzider is offline
Senior Member
 
Join Date: Mar 2008
Location: GMT-5
Posts: 186
inzider is on a distinguished road
b-clock modified La Silver and 4_period_MA

Hi! I wonder if someone could help me on that. I search for a clock on the chart that would not be hide by the 4_Period_MA indicators.

As in the same kind of idea, if someone know how to code the 4_Period_MA to get inactive bar gray, or some cold color. As for clock a black background whit white number that would overide the 4PMA.

Any help on codage, file, or direct modification is really apprecited.

Thx in advance!!
Good pips all!
__________________
Common Sens Indicators Active!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #75 (permalink)  
Old 05-20-2008, 07:13 PM
darkkiller's Avatar
darkkiller darkkiller is online now
Senior Member
 
Join Date: Jul 2007
Posts: 159
darkkiller is on a distinguished road
Hello there,how to put this clock to second window?i try to change from #property indicator_chart_window to #property indicator_separate_window, but still not work.

thanks
Attached Images
File Type: gif clocksecondwindow.gif (17.4 KB, 304 views)
Attached Files
File Type: mq4 DollyClock.mq4 (17.8 KB, 42 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #76 (permalink)  
Old 05-21-2008, 12:03 AM
Linuxser's Avatar
Linuxser Linuxser is offline
Moderator
 
Join Date: May 2006
Location: Helliconia (Autumn)
Posts: 2,165
Linuxser has disabled reputation
Quote:
Originally Posted by darkkiller View Post
Hello there,how to put this clock to second window?i try to change from #property indicator_chart_window to #property indicator_separate_window, but still not work.

thanks
Done.

I think it's working fine. Just change the number of the window where you want to drop the indicator.
Attached Images
File Type: gif ll.gif (28.7 KB, 277 views)
File Type: gif lll.gif (29.2 KB, 275 views)
Attached Files
File Type: mq4 DollyClock_Lnx.mq4 (17.9 KB, 32 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #77 (permalink)  
Old 05-21-2008, 01:49 AM
darkkiller's Avatar
darkkiller darkkiller is online now
Senior Member
 
Join Date: Jul 2007
Posts: 159
darkkiller is on a distinguished road
thanks linuxser..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #78 (permalink)  
Old 06-09-2008, 09:36 PM
WRR WRR is offline
Junior Member
 
Join Date: Nov 2005
Posts: 28
WRR is on a distinguished road
Bug Fix

Quote:
Originally Posted by Linuxser View Post
Done.

I think it's working fine. Just change the number of the window where you want to drop the indicator.
Hello folks,
I found a bug in the DollyClock_Lnx indicator that I fixed. See revised indicator DollyClock_LnxV2.mq4 attached. The original looked like this:

string str_gmt;
if((brokerTime-GMT)>=0)
str_gmt="GMT+"+DoubleToStr((brokerTime-GMT)/3600,0);
else
str_gmt="GMT-"+DoubleToStr((brokerTime-GMT)/3600,0);

GMT and brokerTime are integers who's difference is not exactly divisible by 3600 seconds most of the time. This is because broker servers tend to be a couple or a few seconds slower than true time. If you divide an integer by an integer the quotient is truncated. So if the difference between broker time and GMT is 1.992 hours for a GMT +2 broker, the code above returns GMT+1. If you replace 3600 with 3600.0 the indicator returns GMT+2, since it recognizes that 3600.0 is a double data type, allowing decimal places and avoiding truncation.

WRR
Attached Images
File Type: gif dolly_test.gif (50.4 KB, 176 views)
Attached Files
File Type: mq4 DollyClock_LnxV2.mq4 (18.1 KB, 34 views)

Last edited by WRR : 06-09-2008 at 09:43 PM. Reason: Label on chart should read Broker Offset not Broker Time
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #79 (permalink)  
Old 06-10-2008, 06:37 AM
bshcom bshcom is offline
Junior Member
 
Join Date: Dec 2006
Posts: 2
bshcom is on a distinguished road
Quote:
Originally Posted by WRR View Post
Hello folks,
I found a bug in the DollyClock_Lnx indicator that I fixed. See revised indicator DollyClock_LnxV2.mq4 attached. The original looked like this:

string str_gmt;
if((brokerTime-GMT)>=0)
str_gmt="GMT+"+DoubleToStr((brokerTime-GMT)/3600,0);
else
str_gmt="GMT-"+DoubleToStr((brokerTime-GMT)/3600,0);

GMT and brokerTime are integers who's difference is not exactly divisible by 3600 seconds most of the time. This is because broker servers tend to be a couple or a few seconds slower than true time. If you divide an integer by an integer the quotient is truncated. So if the difference between broker time and GMT is 1.992 hours for a GMT +2 broker, the code above returns GMT+1. If you replace 3600 with 3600.0 the indicator returns GMT+2, since it recognizes that 3600.0 is a double data type, allowing decimal places and avoiding truncation.

WRR
how to get the cities to show real time?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #80 (permalink)  
Old 06-10-2008, 09:52 AM
IN10TION's Avatar
IN10TION IN10TION is online now
Senior Member
 
Join Date: Mar 2007
Posts: 202
IN10TION is on a distinguished road
if you use windows sidebar, then with this clock you can adjust time zones very easily and put your location in it per clock. Don't clutter your chart too much.
Attached Images
File Type: jpg Untitled.jpg (15.4 KB, 127 views)
Attached Files
File Type: rar DigitalDutchClock.rar (363.1 KB, 15 views)
__________________
..minor Fix.. IN10TION newsReader v08 Lite - the best news reader on your chart

Last edited by IN10TION : 06-18-2008 at 05:28 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Nice Forum! autofx General Discussion 3 06-07-2007 06:33 AM
A nice little GBP/USD trading strategy easttech Analytics 5 01-02-2007 11:36 AM
Nice and clean setup elihayun Suggestions for Trading Systems 16 11-19-2006 06:15 AM
Very nice 4 hour Signal Ind, but need it to be an EA pikachucom Expert Advisors - Metatrader 4 3 04-14-2006 09:15 AM
Very nice 4 hour Signal Ind, but need it to be an EA pikachucom Suggestions for Trading Systems 2 04-13-2006 08:46 PM


All times are GMT. The time now is 09:37 AM.