Forex



Go Back   Forex Trading > Commercial systems > Commercial Trading Systems and indicators
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1641 (permalink)  
Old 07-05-2007, 04:51 PM
Worldwide's Avatar
Member
 
Join Date: Apr 2007
Posts: 91
Worldwide is on a distinguished road
Smile

Quote:
Originally Posted by HighFireTrend View Post
Guys you can trade like me too good.
You should have only IDT's forecast and IDT's alert indicator which works in MetaTrader 4.0
Stops ---> RSI 70 level for buy and RSI 30 for sell + target if there are no RSI if no RSI and target you must close current market price when received a new forecast --- very simple. Entries --- our RSI alert indicator from IDT, if you don't know how to compile and install that -- I can help you to do that.
Agree with you HFT, yes, I use all above's text which you posted there.
Alert RSI --- good thing for our work, thank you IDT and HFT
When I sleep I hear an alert and I can sleep, but when I haven't alert I must seat with my monitor and I couldn't sleep but now I can =))
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1642 (permalink)  
Old 07-05-2007, 06:39 PM
JoZo's Avatar
Senior Member
 
Join Date: Feb 2006
Location: Croatia
Posts: 429
JoZo is on a distinguished road
Quote:
Originally Posted by HighFireTrend View Post
Hi, and what about TRADE? =)))
We must work every day =)))

Haha, I yes I know that I must trade to earn some money.
Maybe next week I will start again

Good Luck!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1643 (permalink)  
Old 07-05-2007, 09:44 PM
Senior Member
 
Join Date: Dec 2006
Posts: 797
HighFireTrend is on a distinguished road
Smile

Quote:
Originally Posted by JoZo View Post
Haha, I yes I know that I must trade to earn some money.
Maybe next week I will start again

Good Luck!
Ok heheh, good hot days for you and lucky days too =)))
__________________
IDT's website: http://intradayleague.com/ IDT's broker IB: https://secure.efxnow.com/NewOLS_MQU...ALIA&SIBC=ALIA
All service: Management Service "IDT accept BANK, WesternUnion, WebMoney Transfers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1644 (permalink)  
Old 07-05-2007, 10:10 PM
Senior Member
 
Join Date: Jan 2007
Posts: 139
talktome is on a distinguished road
Quote:
Originally Posted by HighFireTrend View Post
I have a script for RSI but for MetaTrader 4, with a sound when the price check our 70 and 30 levels, if you are sleeping ---- very good, because many traders escape many signals when they are sleeping.

//+------------------------------------------------------------------+
//| RSI_Alert.mq4 |
//| IDT |
//| IntradayDreamTrading.com |
//+------------------------------------------------------------------+
#property copyright "IDT"
#property link "http://www.intradaydreamtrading.com/"

#property indicator_chart_window
//---- input parameters
extern double F_level=30.0;
extern double S_level=70.0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
//----
double currRSI=iRSI("GBPUSD",PERIOD_M5,14,PRICE_CLOSE,0);
if (currRSI>S_level || currRSI<F_level) Alert("RSI=",currRSI);
//----
return(0);
}
//+------------------------------------------------------------------+




if you don't know how to compile --- I can help you to install that alert indicator RSI.
I never used EA. Can you please help me to install it to me MT4 platform? Many thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1645 (permalink)  
Old 07-05-2007, 11:16 PM
Senior Member
 
Join Date: Dec 2006
Posts: 797
HighFireTrend is on a distinguished road
Smile

Quote:
Originally Posted by talktome View Post
I never used EA. Can you please help me to install it to me MT4 platform? Many thanks.
1-you must download MetaTrader 4.0
2-open Meta Editor in opened MetaTrader 4.0 find above a yellow buttom.
3-create a clear list in Meta Editor
4-paste script text:

//+------------------------------------------------------------------+
//| RSI_Alert.mq4 |
//| IDT |
//| IntradayDreamTrading.com |
//+------------------------------------------------------------------+
#property copyright "IDT"
#property link "http://www.intradaydreamtrading.com/"

#property indicator_chart_window
//---- input parameters
extern double F_level=30.0;
extern double S_level=70.0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
//----
double currRSI=iRSI("GBPUSD",PERIOD_M5,14,PRICE_CLOSE,0);
if (currRSI>S_level || currRSI<F_level) Alert("RSI=",currRSI);
//----
return(0);
}
//+------------------------------------------------------------------+



5-push compile
6-save as in indicator's folder ---e.g. "IDT RSI"
7-reload MetaTrader
8-open MetaTrader again, add to your GBPUSD chart "IDT RSI" indicator ----
that's all - you can work and you can free your eyes
and you can only hear a signal when the price take 30
or 70 levels of RSI
__________________
IDT's website: http://intradayleague.com/ IDT's broker IB: https://secure.efxnow.com/NewOLS_MQU...ALIA&SIBC=ALIA
All service: Management Service "IDT accept BANK, WesternUnion, WebMoney Transfers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1646 (permalink)  
Old 07-06-2007, 11:54 AM
Senior Member
 
Join Date: Dec 2006
Posts: 797
HighFireTrend is on a distinguished road
Thumbs up

07.05.2007 for Friday 06 (New York time)
(super intraday)
- 05:30 am - 10:30 am (07.06.2007) - buy
"+++" - pluses - means without trade-risk.
------------------------------------------
(intraday)
- Up trend
- buy zone 2.0091-2.0046
- stop 2.0006
- target 2.0158
------------------------------------------

+53 pips
Attached Images
File Type: gif 6 july.gif (16.5 KB, 263 views)
__________________
IDT's website: http://intradayleague.com/ IDT's broker IB: https://secure.efxnow.com/NewOLS_MQU...ALIA&SIBC=ALIA
All service: Management Service "IDT accept BANK, WesternUnion, WebMoney Transfers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1647 (permalink)  
Old 07-06-2007, 03:20 PM
Senior Member
 
Join Date: Dec 2006
Posts: 797
HighFireTrend is on a distinguished road
Thumbs up

waiting another two orders for close....
Attached Images
File Type: gif 6 july 2.gif (21.3 KB, 379 views)
__________________
IDT's website: http://intradayleague.com/ IDT's broker IB: https://secure.efxnow.com/NewOLS_MQU...ALIA&SIBC=ALIA
All service: Management Service "IDT accept BANK, WesternUnion, WebMoney Transfers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1648 (permalink)  
Old 07-06-2007, 03:46 PM
Senior Member
 
Join Date: Dec 2006
Posts: 797
HighFireTrend is on a distinguished road
Thumbs up

That's all, look at the final trade today on the photo below...

+164 pips
Attached Images
File Type: gif 6 july 3 final.gif (16.2 KB, 377 views)
__________________
IDT's website: http://intradayleague.com/ IDT's broker IB: https://secure.efxnow.com/NewOLS_MQU...ALIA&SIBC=ALIA
All service: Management Service "IDT accept BANK, WesternUnion, WebMoney Transfers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1649 (permalink)  
Old 07-07-2007, 11:51 AM
Worldwide's Avatar
Member
 
Join Date: Apr 2007
Posts: 91
Worldwide is on a distinguished road
Smile

Quote:
Originally Posted by HighFireTrend View Post
That's all, look at the final trade today on the photo below...

+164 pips
Great HFT, I made only +87 pips.
Good work, and where our omegavus? =))))
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1650 (permalink)  
Old 07-09-2007, 01:34 PM
Senior Member
 
Join Date: Dec 2006
Posts: 797
HighFireTrend is on a distinguished road
Thumbs up

07.08.2007 for Monday 09 (New York time)
(super intraday)
- 03:00 am - 05:20 am (07.09.2007) - sell
- 02:00 pm - 03:30 pm (07.09.2007) - sell
"+++" - pluses - means without trade-risk.
------------------------------------------
(intraday)
- Down trend
- sell zone 2.0090-2.0124
- stop 2.0164
- target 2.0039
------------------------------------------

still + 17 pips..... another trade .... look at the photo....
Attached Images
File Type: gif 9-july.gif (13.0 KB, 307 views)
__________________
IDT's website: http://intradayleague.com/ IDT's broker IB: https://secure.efxnow.com/NewOLS_MQU...ALIA&SIBC=ALIA
All service: Management Service "IDT accept BANK, WesternUnion, WebMoney Transfers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
currency trading, depth of market, hft, idt intradaydreamtrading, intraday, omegavus, trading


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Intraday Probability Bands. Linuxser Indicators - Metatrader 4 7 05-06-2007 02:02 AM
Boostrade intraday EAs boostrade Expert Advisors - Metatrader 4 2 04-06-2007 11:50 PM
RSI Pivot and Fibonacci Intraday schwager Suggestions for Trading Systems 15 04-30-2006 07:33 AM


All times are GMT. The time now is 02:25 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.