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 'ade'.



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 7 results

  1. author: Bamboo ADE - All Data Everywhere Introduction The “All Data Everywhere” library (or ADE for short) is a set of EasyLanguage functions and indicators that allow you to store any kind of data for any symbol and bar interval. You can then access that data from any study or strategy, regardless of the symbol or bar interval. One powerful use for ADE is to store higher timeframe data for a symbol and then access that data from a lower timeframe. For example, you can calculate and store ADX and RSI for a 30 minute chart, and then you can access that data from a 5 minute chart. Another powerful use for ADE is to look at data for other symbols. You can use ADE to store data (OHLC, volume, indicators, etc) for an entire portfolio of symbols, and then you can access the data for any symbol from any other symbol. This makes it possible to perform analyses that depend on the relationships between different symbols in your portfolio. ADE includes the ability to save data to text files and load it back. This means that you can pre-calculate and store data for any symbols and timeframes you want, and you can retrieve that data whenever you want. For example, you can store five years of data for a 30 minute MSFT chart. If you open a 30 minute MSFT chart with only one month of data, your study or strategy can load the five years of historical data and append only the new data. It is not necessary to recalculate the entire five years every time. Installation instructions and sample indicators are provided in the zip file. note: ADE uses the ELCollections library, so you must install ELCollections before you install ADE. Also, taking the time to learn how ELCollections works will allow you to make the most of ADE. http://www.traderslaboratory.com/forums/f46/collections-for-easylanguage-5929.html ADESETUP.ZIP
  2. The “All Data Everywhere” library (or ADE for short) is a set of EasyLanguage functions and indicators that allow you to store any kind of data for any symbol and bar interval. You can then access that data from any study or strategy, regardless of the symbol or bar interval. Is it possible to send texte via ADE ? var: myTexte( "hello" ), InfoMap(MapSN.New ); Value1 = MapSN.Put(InfoMap, "my.Texte", myTexte ); Value1 = ADE.PutBarInfo(Class, GetSymbolName, ADE.BarInterval, ADE.BarID, InfoMap); ------ Compiled with error(s): ------ Incorrect argument type.
  3. Hello can we call tick value in min chart or volume chart ? I want calculate tick by tick in other type bar, but Im not smart enough to do this. Any help would be appreciated~ Cheers
  4. GlobalVariable.dll Version 2.2 Global Variable is a dynamic-link library (DLL) that can be used to extend EasyLanguage®. A DLL’s can be written in any of a variety of programming languages, including C/C++, Delphi, and PowerBASIC®. User developed TradeStation®-compatible DLL’s, while not part of the TradeStation platform itself, are used to provide user-developed function libraries that may be called from EasyLanguage analysis techniques. Functions exported from user-developed DLL’s can be called by EasyLanguage analysis techniques and by other applications. DLL functions can perform actions that cannot be done easily or at all in EasyLanguage. Additionally, they might be used to speed up processing. An example code is included; it demonstrates how to create two types of global variable storage locations for each of five data types. The two types of storage locations are numbered storage locations, named storage locations. The five data types are Boolean values, integers, single-precision floating point numbers (called simply “floats”), double-precision floating-point numbers (called simply “doubles”), strings (text values). Documentation inside zip file. . GlobalVariable22.zip
  5. Hi, I am using ADE to transfer an indicator information from a daily chart to an intraday chart. That's ok for this In my 1hour Chart, i have the information (the value of my indicator) for the last daily bar closed. Is it possible to have the information for this last bar even if the bar isn't closed? for exemple, today (12 january 2010) i have the daily indicator value for the last bar closed (11 january2001) I would like to have the daily indicator value for the last bar even if this bar isn't closed (12 january 2010) is it possible? NR
  6. author: Bamboo Collections for EasyLanguage Introduction The ELCollections library supports two kinds of collections: Lists and Maps. A List is an ordered list of values. Values can be pushed onto the front or back of the list, and they can be popped off the front or back. They can also be inserted or removed at any position in the list. A value can be accessed by an index (like an array), or by looking at the front or back of the list. Lists can be “grown” on demand by adding or inserting values. A Map associates keys and values. A key is a piece of data for which you want to store an associated value. For example, suppose you want to store the last closing price for each symbol. You can put this information in a map, which can be represented conceptually like this: CSCO -> 19.74 IBM -> 93.37 MSFT -> 29.77 ORCL -> 13.34 Creating a Collection There are two ways to create a collection: the New method and the Share method. Both of these methods return a numeric ID for the new collection. This ID must be stored in a variable and passed to any functions that operate on the collection. The New method creates a collection that is visible only to the current study or strategy. It does not take any arguments. The Share method creates a collection that can be shared by multiple studies or strategies. It takes a single argument, which is a unique name that identifies the collection. If no collection with that name exists, it is created; otherwise, the ID of the existing collection is returned. Note that a collection can only be shared within a single application. Charting, RadarScreen, and OptionStation are different applications, so a collection cannot be shared across them. Collections of Collections It is possible to create a collection that contains other collections. For example, you can create a Map of Lists, a Map of Maps, a List of Maps, or a List of Lists. This allows you to create sophisticated data structures to solve all kinds of problems. For MultiCharts users: Please place the elcollections.dll in the Multicharts.exe program directory (i.e. "C: \Program Files\TS Support\Multicharts\"). Once that it done you can import the "ELCollections.eld" file in the zip with PLEditor and you have ELCollections installed. Manual & instructions in the zip file. ELCollections.zip
  7. Hi i want to plot yesterday daily Pivot , supports an resistances in 1 hour Chart I installed all components as described : 1/ place the elcollections.dll in "C: \Program Files\TS Support\Multicharts\" 2/ imported and compiled ELCollections.eld 2/ install ADE in c:\ 4/ imported and compiled AllDataEverywhere.ELD I created an indicator that calculates daily Pivot , supports an resistances Vars: Pivot(0), Resistance1(0), Resistance2(0), Resistance3(0), Support1(0), Support2(0), Support3(0), Class("Pivot&Support1&Support2&Support3&Resistance1&Resistance2&Resistance3"), InfoMap(MapSN.New); // used to pass data to ADE Pivot = ( Low + High + Close ) / 3; Resistance1 = ( Pivot * 2 ) - Low; Resistance2 = Pivot + Range; Resistance3 = Resistance1 + Range; Support1 = ( Pivot * 2 ) - High; Support2 = Pivot - Range; Support3 = Support1 - Range; // Put the information we want to store in our InfoMap Value1 = MapSN.Put(InfoMap, "Pivot", Pivot); Value1 = MapSN.Put(InfoMap, "Resistance1", Resistance1); Value1 = MapSN.Put(InfoMap, "Resistance2", Resistance2); Value1 = MapSN.Put(InfoMap, "Resistance3", Resistance3); Value1 = MapSN.Put(InfoMap, "Support1", Support1); Value1 = MapSN.Put(InfoMap, "Support2", Support2); Value1 = MapSN.Put(InfoMap, "Support3", Support3); // Tell ADE to store this info for the current symbol and bar interval Value1 = ADE.PutBarInfo(Class, GetSymbolName, ADE.BarInterval, ADE.BarID, InfoMap); Plot1( Pivot[1], "PP"); plot2( Resistance1[1], "R1"); Plot3( Resistance2[1], "R2"); Plot4( Resistance3[1], "R3"); Plot5( Support1[1], "S1"); Plot6( Support2[1], "S2"); Plot7( Support3[1], "S3"); i inserted the indicator below in 1 HOUR CHART to get values Inputs: Interval(60); Vars: Class("Pivot&Support1&Support2&Support3&Resistance1&Resistance2&Resistance3"), // identifies our metrics with a unique name InfoMap(MapSN.New), // used to retrieve data from ADE Pivot(0), Resistance1(0), Resistance2(0), Resistance3(0), Support1(0), Support2(0), Support3(0); // Retrieve the info for the current symbol and bar interval into InfoMap Value1 = ADE.GetBarInfo(Class, GetSymbolName, Interval, ADE.BarID, InfoMap); // Fetch the values from the InfoMap into variables Pivot = MapSN.Get(InfoMap, "Pivot"); Resistance1 = MapSN.Get(InfoMap, "Resistance1"); Resistance2 = MapSN.Get(InfoMap, "Resistance2"); Resistance3 = MapSN.Get(InfoMap, "Resistance3"); Support1 = MapSN.Get(InfoMap, "Support1"); Support2 = MapSN.Get(InfoMap, "Support2"); Support3 = MapSN.Get(InfoMap, "Support3"); // Plot them Plot1( Pivot[1], "PP"); plot2( Resistance1[1], "R1"); Plot3( Resistance2[1], "R2"); Plot4( Resistance3[1], "R3"); Plot5( Support1[1], "S1"); Plot6( Support2[1], "S2"); Plot7( Support3[1], "S3"); I did apply the second indicator, but got the following messages: Error in "ADE Plot MarketDelta" Company: "Bamboo" Error location : "ADE" Error category : "ADE Error" Short string : "ADE Error" Source string : "No data available for Class('Pivot&Support1&Support2&Support3&Resistance1&Resistance2&Resistance3'), AC, 60min" How can this work correctly? Thanks
×
×
  • Create New...

Important Information

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