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.

aaa

Members
  • Content Count

    466
  • Joined

  • Last visited

Everything posted by aaa

  1. Here is the doc in PDF It looks that it's a powerfull tool ( 5 Mo) for professionnal programmer Tams, where to put the dll ? I suppose the best is In the system32 directory Global Variable 2.2.pdf
  2. ThanX Tams for the clean explanation If I'm right ; Collections extracts data in background and ADE imports them in an other graph/time ? If so, Collections is the engine and ADE the layer ?
  3. Thank you Tams for an other simple and clever indicator Personnally I use fixed stop and as soon as the market moves in my way I adjust it 1 point over Then I try to be concentrated on a good exit, forgotten totally the profits, as if I am out the market and looking to a good reverse entry I'm afraid to be influenced and unconcentrated by the RT line during the trade. I used it today to have a look about my daytrades and it is very interesting to make an objectif critical of entry/exit points It is a very smart tool
  4. ThanX Takysie for this very interesting site
  5. // Vertical Lines at specified time // author: aaa // Version 0.1 // date: 20090516 // // date: 20090523 // Version 0.2 // Code cleaned by Tams // to see how the market reacts everydays specially Cash Opening and NY Opening or whatever you want // holding the mouse at the end of a lines shows intraday price High Low difference Vertical Lines at specified time 0.2.txt
  6. What did the Sharing DDE become? Apply to all editions of Windows Vista. If you used the previous versions of Windows, you know maybe that the Sharing DDE is a tool permitting to manage the communication between the programs and to share some data on a network. The Sharing DDE is not available in this version of Windows, because it is replaced by other methods permitting to communicate and to share some data between several computers. http://windowshelp.microsoft.com/Windows/en-US/default.mspx May be that it is to secure the system against trojan which can take control of the DDE in a DOS mode. Good news... if the new DDE will be faster for RT ticks (DDE jumps ticks in a fast market) Bad news... if we have to wait a long time untill all softwares using DDE rewrites their codes (if they do it...)
  7. Dear Tams I agree with you ; Programing is an art. Because I'm a lazy animal.. ...I write down 0/1 oftenly in the format window instead of true/False wich is more source of faults.
  8. ... I tell you, I tell you, I tell you we must (die) find (JM) Tam Tam Tam Tam Tam Tam Tam Tam Tam Tam Tam Tam :cheers:
  9. This algorythm is really a master piece of logic :thumbs up: (at my modest level) I should have not be able to do it but I understand 100 % of the progression It reminds me the lighted maths school hours. I'm so happy !!!
  10. In fact it is not a problem of langage but I'm wondering WHAT we can do with it ? Share what ? Put what ? Put what where ? What is a profile level ? It is the fundamental use that I don't catch ! I'm better when I have a concret script wich has an action on the chart. I hate to be stupud like this
  11. Thank you Ochie for your explanation but, Sorrry, I don't understand it :bang head: I have to read carefully the doc.
  12. OK, Let's go !! The setup creates a C:\ADE Modify the function to return the directory you are using, and then verify the function. For example, if you are using E:\ADE as your ADE root directory, you would change the function as follows: ADE.Directory = “E:\ADE”; So we can move this directory (better at my opinion to free the precious C:\ ) Here are All Data Everywhere.pdf And the list of 123 Fonctions (66 are already imported - from Collections ?) + 5 indicators imported with ELCollections.eld (Compilation takes a long time) After have reading (quickly) the doc, it looks a great tools... it's nice from Tams to share all his tools with us. All Data Everywhere.pdf
  13. OK, Let's go !! The setup puts elcollections.dll in C:\Windows\system32\ Here are ELCollections.pdf And the list of 185 Fonctions imported with ELCollections.eld (Compilation takes a long time) After have reading (quickly) the doc, I'm wondering what could I do with this tool...:embarassed: Anyway, it's nice from Tams to share all his tools with us. ELCollections.pdf
  14. Which one is the leader ? The spread is switched and the paintbar added on the Cash graphic Spread = close data1 - close data2 ; The plotBars shows when the cash is leading Sometimes The cash says : "OK Mister Future, I've moved too far, I will reverse and follow you because you are the leader !" Some other times it says : "I'm fed up, Mister Future, I will follow my way and from now I'm the leader !"
  15. This one looks logical but doesn't work Please, Show me the way to the next (whisky bar) step input: st.length( 20 ), lt.length( 50 ), arw.size( 18 ); var: avg.st( 0 ), avg.lt( 0 ), id.arw( -1 ), OK( 0 ), Sell.1( 0 ), id.arw2( 0 ); avg.st = averagefc(close, st.length); avg.lt = averagefc(close, lt.length); plot1( avg.st, "avg.st"); plot2( avg.lt, "avg.lt"); if avg.st crosses above avg.lt then OK = avg.lt ; if Sell.1 = (OK + 3 points) then id.arw2 = ARW_new(date, time, highest( high, 1 ), true ); ARW_setsize( id.arw2 , arw.size );
  16. Thanx for your words of encouragement The most I've learned comes from this forum And this indicator was possible only with your gentle and clever support
  17. I was sure that they were a problem with the lines Tams, you have Xray eyes only > makes the difference from a wrong code to a correct code. ThanX for the pedagogic explanation
  18. Nonono sir It's my fault = my explanations are always complicates :haha: Is it Better with a graph ?
  19. moved to indicators section http://www.traderslaboratory.com/forums/f46/vertical-lines-specified-time-5988.html
  20. // Vertical Lines at specified time // author: aaa // date: 20090516 // // to see how the market reacts everydays specially Cash Opening and NY Opening or whatever you want // holding the mouse at the end of a lines shows intraday price High Low difference Please, feel free to correct my code if needed Vertical Lines at specified time.txt
  21. // Vertical Lines at specified time // author: aaa // date: 20090516 // // to see how the market reacts everydays specially Cash Opening and NY Opening or whatever you want // holding the mouse at the end of a lines shows intraday price High Low difference Please, feel free to correct my code if needed Vertical Lines at specified time.txt
  22. Tams, It's nice to extract such interesting possibilitie May I ask a question ? After that avg.st crossed above avg.lt how to compute x points above the X and draw an other arrow? Pseudo Code if avg.st crosses above avg.lt = OK if price > (OK + 3 points) then id.arw = ARW_new(date, time, OK + 3 points [1], false); if price > (OK + 5 points) then id.arw = ARW_new(date, time, OK + 5 points [1], false);
  23. // author: aaa // date: 20090516 // added all formatting possibilities Moving Average 2 Lines Crossover Formatting.txt
  24. But actually my level is just enough to fill up... a lighter :bad idea:
  25. aaa

    Bar Numbering

    :idea: :idea: :idea: :idea: There is no limit for Tams' imagination... :idea: :idea: :idea: :idea:
×
×
  • Create New...

Important Information

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