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.

jojojo

Members
  • Content Count

    58
  • Joined

  • Last visited

Everything posted by jojojo

  1. Hi There are many tricks out there concerning plotting text-info on a chart.Like always in EasyLanguage there are several possibilities (or better call it tricks) to achieve that - due to the poor limitations of the language.I think lots of you spended more time on finding solutions for a specific problem you never thought of it would increase to never ending.............. ok ,just joking one of the finest solutions for this text - keeping is inside of Ant's genious MD. Unfortunately he retired very soon - so no further assistance.Maybe someone could help to bring light into this coding structures, so one can use this concept for own analysis. What I did here is to strip the code down to the column at the right side of the chart to remove everything unnessecary . As I said before it's just for needs of understanding how this code works and how to reproduce this as "text-on-right-side-module". I'm no learned programmer so I could not get through enough. Idea might be to code something as exercise to the right side - maybe just the close of each tick or something similar. It's just an idea how to start with this - every idea welcome Regs Jojo:crap: RIGHTSIDE.ELD
  2. I'm not shure in detail , but v stands for volume in EL ??
  3. Here is a nice one I found while cleaning up my harddisk.Might be from G.H.Kramer - seemes to be his style. regs PRICEDISTRIBUTION.ELD
  4. Here is another one for Up and DownTicks. Nice visualization.Notice to install both. Regs Jojo PB UP+DNTICKS.ELD
  5. jojojo

    TickMoneyFlow

    Here please.It's recomended to use it on 1Tick-chart. inputs: Length( 14 ), AlertLength( 14 ), OverSold( 20 ), OverBought( 80 ), OverSColor( Cyan ), OverBColor( Red ) ; variables: MoneyFlowVal( 0 ) ; MoneyFlowVal = MoneyFlow( Length ) ; Plot1( MoneyFlowVal, "MoneyFlow" ) ; Plot2( OverBought, "OverBot" ) ; Plot3( OverSold, "OverSld" ) ; { Color criteria } if MoneyFlowVal > OverBought then SetPlotColor( 1, OverBColor ) else if MoneyFlowVal < OverSold then SetPlotColor( 1, OverSColor ) ; { Alert criteria } if LowestBar( C, AlertLength ) = 0 and LowestBar( MoneyFlowVal, AlertLength ) > 0 then Alert( "Bullish divergence - new low not confirmed" ) else if HighestBar( C, AlertLength ) = 0 and HighestBar( MoneyFlowVal, AlertLength ) > 0 then Alert( "Bearish divergence - new high not confirmed" ) ;
  6. Here's another one for realtime.Not so bad. Give it a try TICKMONEYFLOW.ELD
  7. Thanks for your effort.I appreciate it- Regs
  8. Hello I'm looking for some programming help from someone who is experienced in gv's and/or elc .After weeks I'm burned out now and not able to find a solution. I'm doing some calcs on a one tick chart and want to display these values on a say 1 min chart. First I tried GVSetFloat in the senderchart , but could not accumulate it on the receiverchart , maybe because global variables are always reset to zero or something like this. Then I tried this with el-collections and was able to put one value into a list , even to a file. But then the same problem - unable to accumulate it on another chart.Anyone's help appreciated. Regs Jojo
  9. For all who are interested here's a link which leads quite a bid further : https://www.tradestation.com/Discussions/Topic.aspx?Topic_ID=51615 very interesting stuff Regs Jojo sorry the real stuff is here : https://www.tradestation.com/discussions/Topic.aspx?Topic_ID=41825
×
×
  • Create New...

Important Information

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