Forex
Google

Go Back   Forex Trading > Trading systems > News/Signal Trading


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 (19) Thread Tools Display Modes
  #81 (permalink)  
Old 04-10-2008, 04:34 AM
Senior Member
 
Join Date: Oct 2007
Posts: 186
Dave137 is on a distinguished road
Red face

Quote:
Originally Posted by newdigital View Post
1. View the calendars.
2. Registration.
Please note: you do not need to register on this tool Forex-Tsd Calendar :: Calendars if you want to trade the signals. Just attach SignalTrader EAs to the chart may be enough!
3. You need to be registered on this tool if you want to create your own signals.It is the same with post #2 of this thread.

4. Files.
There are 3 files:
- SignalTrader_v1.4 EA;
- WebGet.mqh;
- WebGet.dll.

5. How to install SignalTrader_v1.4 EA.
Please note: this EA is not working with old build of Metatrader so please check your build.

- Place SignalTrader_v1.4 EA file to \experts folder (for example: C:\Program Files\Metatrader4\experts).
- Place WebGet.mqh file to \include folder (for example: C:\Program Files\Metatrader4\experts\include).
- Place WebGet.dll file to \libraries folder (for example: C:\Program Files\MetaTrader4\experts\libraries).

And please check the following:
- confirm DLL function call should be off in the Tools menu of Metatrader.
- Allow Enable Expert Advisors and Allow live trading should be on in Tools menu of Metatrader.
- Allow DLL import and Allow external experts import should be on in Tools menu of Metatrader and in indicator's settings as well.

Compile the EA in MetaEditor.

6. Settings.

Code:
Magic =  33333;
It is magic number. Set the different number for different charts if you are trading on the same copy if Metatrader.

Code:
Slippage = 6;
Slippage.

Code:
CalendarID = 15;
It is ID of signal calendar you are trading. Please look at post #3 of this thread for the explanation.

Code:
FileName ="USDJPY_D1";
It is the name of excel file: this EA is taking the signals from our tool Forex-Tsd Calendar :: Calendars from one of the signal calendar (see explanation about ID) and placing the signals to excel file. Please note: name of this file should be different for different chart.

Code:
ReqPeriod = 30; // Calendar Request period in min
EA will request the signals from our tool's signal calendar (ID) with periodicity of ReqPeriod. I am not recommending to set it less then 5 minutes. So, EA may get information about new signals to trade/close, or some correction of the old signals with with periodicity of ReqPeriod.

Lots = 1; // Lot size
Lot size.

Code:
OrderDuration = 0; // Order Duratiton Time in min (0 - not use duration)
It is basicly using for pending orders: buy stop, sell stop, buy limit and sell limit orders.

Code:
ProcessTime = 5; // Order processing Time in min
For example: EA should open buy at 13:35. But Metatrader may be busy openning/modifying some other orders, or disconnected for 1 monutes. Thus, EA will start to open this buy at 13:35 and if can not so EA will try to do it during the next 5 minutes. It is very very usefull settings if you are trading many EAs in one copy of Metatrader.

Code:
UseNewSigClose = 1; // Use Order Close after new signal(0-off,1-on)
If UseNewSigClose = 1: once you get new signal on some pair so old orders on the same pairs will be closed. For example, you have opene trade on USDCHF already but EA gets the other signal on USDCHF so this open trade will be closed and new order will be opened.
If UseNewSigClose = 0: no one order will be closed once EA will receive new signal on the same pair.

Code:
UseEODClose = 0; // Use EOD Close (0-off,1-on)
SessionEnd = 23; // Session End Time
FridayEnd = 22; // Session End Time in Friday
Use end of the day close. If UseEODClose = 1 so all the orders will be closed in the end of the day (SessionEnd or FridayEnd time).

Code:
OrdersNum = 1; // Number of orders
It is number of orders per one signal if UseOpposite = 0 and OrdersNum should be 2 in case of UseOpposite = 1 (see below about UseOpposite).

Code:
UseExtSets = 0; // Use External Settings for TP and IS (0-off,1-on)
If UseExtSets = 1 so Ea will take stop loss and take profit value from the signal calendar. If UseExtSets = 0 so EA will use its own settings for stop loss and take profit and the signals will be used just to open the order in right direction/pair/time/price.

Code:
UseOpposite = 0; // Use Opposite Orders: 0-off,1-on
If UseOpposite =1 so EA will recognize two opposite signals: for example - buy stop order and sell stop orders. In this case OrdersNum should be 2 and opposite signals should be written with 1 minutes interval in calendar and in this case only EA will recognize those two signals as an opposite ones. It is manily for pending orders.

Code:
DelOpposite = 0; // Switch of orders deleting: 0-off,1-on
If UseOpposite =1 so we may use this DelOpposite function.
If UseOpposite =1 so it means that we have 2 opposite pending signals with 1 minutes interval from each other. If DelOpposite =1 so once one order is executed so the rest one will be deleted.

Code:
TakeProfit = 200; // Take Profit in pips       	
StopLoss = 100; // Initial Stop in pips 
TrailingStop = 45; // Trailing Stop in pips 
BreakEven = 30; // Breakeven in pips
If UseExtSets = 0 so EA will use this settings.

Code:
rFilter = " Rating Filter ";
UseRatingFilter = 1;
MaxRating = 3;
MinRating = 2;
It is rating filter.
1 = low impact; 2 = medium impact and 3 = high impacted signals.
If you want to use this rating filter so UseRatingFilter should be 1. If you want to trade medium and high impacted signals only so use MinRating = 2 and MaxRating = 3. If you want to trade high impacted signals only so use MinRating = 3 and MaxRating = 3.

Code:
MM_Parameters    = " MoneyManagement by L.Williams ";
MM = true; // ММ Switch
MaxRisk = 0.04; // Risk Factor
LossMax = 0; // Maximum Loss by 1 Lot
It is money management. MM should be true if you want to use it. With this settings i posted EA will start with 0.2 lot size for 5,000 deposit with 1:100 leverage for example.

7. How it works.
This EA is trading the the forex signals posted manually or by SignalSender indicator to our forex calendar tool Forex-Tsd Calendar :: Calendars
EA is taking the signals for a week and updating this information every ReqPeriod time in minutes.
You may use it to trade your own signals, to trade commercial signals, to trade somebody's private signals according to invitation or to trade public signals.
What folder does the .mql and .dll suppose to reside??

Dave
<><<<
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #82 (permalink)  
Old 04-10-2008, 04:39 AM
Moderator
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 2,362
Linuxser has disabled reputation
Quote:
Originally Posted by Dave137 View Post
What folder does the .mql and .dll suppose to reside??

Dave
<><<<
Seems it's explained in point 5.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #83 (permalink)  
Old 04-10-2008, 05:15 AM
Senior Member
 
Join Date: Oct 2007
Posts: 186
Dave137 is on a distinguished road
Smile

So it is - Thanks for pointing me to it!

Dave
<><<<
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #84 (permalink)  
Old 04-10-2008, 07:14 AM
Administrator
 
Join Date: Sep 2005
Posts: 15,790
Blog Entries: 29
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by moneymaxs View Post
UJ is not prefoming very well.

try to look my currern chart. the impact after 15 minute.

new digital what is ur setting?
No one news EA can perform well with the same settings. The settings should be changed for every week or every news (which is version #6 is doing).
Only USDCAD will perform well for many months with same settings. For toehr pairs - the settings should be changed periodically based on news event values and volatility and so on.
Attached Files
File Type: zip usdjpy_settings.zip (92.4 KB, 53 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #85 (permalink)  
Old 04-10-2008, 09:23 AM
moneymaxs's Avatar
Member
 
Join Date: Sep 2006
Posts: 75
moneymaxs is on a distinguished road
i thing impact will happen between 60 minute.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #86 (permalink)  
Old 04-21-2008, 10:31 PM
Junior Member
 
Join Date: Oct 2007
Posts: 17
scottiepip is on a distinguished road
Generic indicator that graphs data into line chart

Hi folks, I just want to ask if you know of any free and generic Metatrader indicator or script that would let me chart/graph anything? (wherein it gets its data source from a .csv file that I can manually update).

I am thinking of putting some economic data into my charts so that I could study price movements against these economic data. I am happy to manually update this .csv data myself which I could place anywhere inside my Metatrader program folder.

Thanks very much for any help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #87 (permalink)  
Old 04-22-2008, 04:34 AM
Moderator
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 2,362
Linuxser has disabled reputation
Quote:
Originally Posted by scottiepip View Post
Hi folks, I just want to ask if you know of any free and generic Metatrader indicator or script that would let me chart/graph anything? (wherein it gets its data source from a .csv file that I can manually update).

I am thinking of putting some economic data into my charts so that I could study price movements against these economic data. I am happy to manually update this .csv data myself which I could place anywhere inside my Metatrader program folder.

Thanks very much for any help.
Hello,

I moved your post to this thread thinking if you want to add economic data into your charts to comprare with price behaviour you could use the News EA.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #88 (permalink)  
Old 04-22-2008, 04:34 AM
Administrator
 
Join Date: Sep 2005
Posts: 15,790
Blog Entries: 29
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Look at this thread: Indicators/EAs for news and trading signals (you can use my forex calndar, or create yours, make it public or commercial, use it as indicator to the chart or trade it as an EA).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #89 (permalink)  
Old 04-22-2008, 05:36 PM
Junior Member
 
Join Date: Oct 2007
Posts: 17
scottiepip is on a distinguished road
Quote:
Originally Posted by Linuxser View Post
Hello,

I moved your post to this thread thinking if you want to add economic data into your charts to comprare with price behaviour you could use the News EA.
Thanks Linuxuser and newdigital for that, but I am thinking of having previous and recent economic data (e.g. CPI) in line chart so that I could visually see the price movements against those economic data. I am happy to update manually the .csv file that contains CPI data.

I hope I was able to explain myself clearly.

Thanks very much guys!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #90 (permalink)  
Old 04-22-2008, 06:01 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,790
Blog Entries: 29
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
News indicator can plot recent and past economic data on the chart in the way of lines with/without text separated/filtered by pairs/rating (impact) and so on.
It can be past data as well.
And file is uploading automatically in text format in Metatrader's directory.
Indicators/EAs for news and trading signals
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks


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 On
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/news-signal-trading/7759-indicators-eas-news-trading-signals.html
Posted By For Type Date
FF Calendar Indicator for MT - Page 16 This thread Refback 07-09-2008 12:06 AM
¡ÚMT4¡ÛMetaTrader Part10¡Ú¥á¥¿¥È¥ì¡¼¥À¡¼¡Û - MetaTrader¤Þ¤È¤áWiki This thread Refback 06-11-2008 01:02 PM
pion3779485's bookmarks tagged with This thread Refback 06-10-2008 08:00 PM
Diskuzní fórum Financnik.cz This thread Refback 03-06-2008 09:11 AM
Diskuzní fórum Financnik.cz This thread Refback 03-06-2008 04:45 AM
Diskuzní fórum Financnik.cz This thread Refback 03-05-2008 02:01 PM
Diskuzní fórum Financnik.cz This thread Refback 03-05-2008 01:10 PM
Diskuzní fórum Financnik.cz This thread Refback 03-05-2008 10:53 AM
Diskuzní fórum Financnik.cz This thread Refback 03-05-2008 08:04 AM
Diskuzní fórum Financnik.cz This thread Refback 03-05-2008 07:57 AM
Diskuzní fórum Financnik.cz This thread Refback 03-05-2008 07:56 AM
pion3779485's bookmarks on del.icio.us This thread Refback 03-03-2008 05:29 PM
» Indicators/EAs for news and trading signals - Forex Trading This thread Pingback 02-26-2008 12:47 PM
shez_78's bookmarks on del.icio.us This thread Refback 01-26-2008 08:38 PM
FF Calendar Indicator for MT - Page 16 This thread Refback 10-30-2007 02:48 PM
FF Calendar Indicator for MT - Page 16 This thread Refback 08-15-2007 12:18 AM
FF Calendar Indicator for MT - Page 16 This thread Refback 08-10-2007 03:18 PM
FF Calendar Indicator for MT - Page 16 This thread Refback 08-09-2007 12:02 PM
FF Calendar Indicator for MT - Page 16 This thread Refback