Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Search the Community

Showing results for tags 'alert'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to Traders Laboratory
    • Beginners Forum
    • General Trading
    • Traders Log
    • General Discussion
    • Announcements and Support
  • The Markets
    • Market News & Analysis
    • E-mini Futures
    • Forex
    • Futures
    • Stocks
    • Options
    • Spread Betting & CFDs
  • Technical Topics
    • Technical Analysis
    • Automated Trading
    • Coding Forum
    • Swing Trading and Position Trading
    • Market Profile
    • The Wyckoff Forum
    • Volume Spread Analysis
    • The Candlestick Corner
    • Market Internals
    • Day Trading and Scalping
    • Risk & Money Management
    • Trading Psychology
  • Trading Resources
    • Trading Indicators
    • Brokers and Data Feeds
    • Trading Products and Services
    • Tools of the Trade
    • The Marketplace
    • Commercial Content
    • Listings and Reviews
    • Trading Dictionary
    • Trading Articles

Calendars

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


First Name


Last Name


Phone


City


Country


Gender


Occupation


Biography


Interests


LinkedIn


How did you find out about TradersLaboratory?


Vendor


Favorite Markets


Trading Years


Trading Platform


Broker

Found 3 results

  1. Hi everyone I am new to this forum and new to forex trading. I am looking for an indicator for MetaTrader 4 which gives an alert when stochastics for several time frames align and move in the same direction. Anybody has something like that? Cheers P.
  2. Hi, sorry about the double post, wanted to include the code. I programmed an alert system for VT trader, it can be unzipped and installed as a trading system. Use the Trading systems builder import function.Then select the the params alerts of up trend and down trend . Set properties to set your envelope pip size. I added an alert shutoff range, called alert margin pip value. For example if you set your pip value for the envelope alert to 14 pips (50 ema envelope) then I put in 16 pips for the price exceed value alert shut off margin. I much prefer version 2.0. rather than the newer one, less crashes I hope the complete download works, because the inputs should be included. It still has the auto trade code, but I do not use it or really have tweaked it. DataBars:= Ref(Pr,-HShift); tmpMV:= Mov(DataBars,tPr,mt); MA:= tmpMV+((tmpMV*VShift)/100); UC:= MA + (Pips*SymbolPoint()); LC:= MA - (Pips*SymbolPoint()); UCC:= MA + (Pipscont*SymbolPoint()); LCC:= MA - (Pipscont*SymbolPoint()); {Trend Direction} UpTrend:= Pr>UC And Pr<UCC; DownTrend:= Pr<LC AND Pr>LCC; {Long/Short Entry/Exit Display Signals} Buy_Signal:= Cross(MA,UC); Sell_Signal:= Cross(LC,MA); Here is a similar paint bar alert for Quote tracker to be modified. It is set for $2.50 envelope from the 50 ema. Copy and paste into the complex expression paint bar editor. if ABS(bar close-ema(50))>2.5 set color to Yellow and stop This is not the step by step instructions to get these installed, let me know if you get stuck along the way. Also a random note, Meta trader gave me serious delays in real time forex tracking, check it on fast moving markets, VT is much better. VT Envcros_alertzone.zip
  3. This thread is about Adding Sound to your Indicator (EasyLanguage) syntax: PlaySound Plays the specified wave (.wav) sound file. Usage PlaySound("PathFilename") Where: PathFilename - a string expression specifying the path and filename of the wave file to be played Example Play ding.wav sound file located in the root directory of the C: hard drive: PlaySound("C: \ding.wav"); source: EasyLanguage manual
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.