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.

Blu-Ray

Market Wizard
  • Content Count

    512
  • Joined

  • Last visited

Everything posted by Blu-Ray

  1. Depending if you run your code intrabar or on closed tick of bar, you may need to use a slightly different code. If intrabar then use code in my last post or if used on closed tick of a bar use something like this : Condition1 = Close crosses above PP; If Condition1 then Alert( Getsymbolname +" crossed above PP"); Condition2 = Close crosses below PP; If Condition2 then Alert( Getsymbolname +" crossed below PP"); Condition3 = Close crosses above PPlwrthresh; If Condition3 and Condition1 = false then Alert( Getsymbolname +" just under PP"); Condition4 = Close crosses below PPuppthresh; If Condition4 and Condition2 = false then Alert( Getsymbolname +" just above PP"); This would eliminate getting alerts of " just under PP" and "crossed above PP" on the same bar. Hope this helps Blu-Ray
  2. Hi Ed To do Alerts on a break of a pivot you would need to add these two lines to each pivot : If Close crosses above PP then Alert( Getsymbolname +" crossed above PP"); If Close crosses below PP then Alert( Getsymbolname +" crossed below PP"); As for price getting near a pivot... well you would have to define "near" in terms of ticks then create a threshold around each pivot.... for example Inputs: Threshold (5); Vars: mintick(0),PPuppthresh(0),PPlwrthresh(0); Mintick = minmove/pricescale; PPuppthresh = PP + (Threshold*mintick); PPlwrthresh = PP - (Threshold*mintick); Then you would insert the two alert lines like shown above but change the setting to the threshold... If Close crosses above PPlwrthresh then Alert( Getsymbolname +" just under PP"); If Close crosses below PPuppthresh then Alert( Getsymbolname +" just above PP"); .... and again, repeat for every pivot. This should get you on your way. Hope this helps Blu-Ray
  3. I've just noticed a very handy feature in this thread .... if you look to the top of this page, next to the page numbers...... you'll see a number with a paperclip next to it..... click on that and it shows all of the attachments within the thread. Cheers Blu-Ray
  4. Ed I've just replied to your other post in the Various indicators thread.... you'll find the radarscreen version within that thread. http://www.traderslaboratory.com/forums/f46/various-indicators-squeeze-2fastmas-etc-3688.html Cheers Blu-Ray
  5. Thanks and good to hear it's working for you....... the Radarscreen version is already posted within this thread. Cheers Blu-Ray
  6. Yes it's possible....... but you need to explain it better......first bar of what ?. post a screenshot with details always helps. Cheers Blu-Ray
  7. Without knowing what your 3 indicators, as in they might all scale differently, you're best bet would be to plot your 3 indicators as normal . Then have your new combined indicator set to not plot at all or just to show a dot when your conditions from all 3 indicators are true. Hope this helps Blu-Ray
  8. The easiest way would be to combine all 3 indicators into one. Then you can reference whatever you want from the combined indicator. Hope this helps Blu-Ray
  9. Hmmmmm :hmmmm: When I read "Do not load this indicator", I thought I was reading an old thread as was sure I'd read this before.... but then noticed you'd only typed this yesterday. So a quick check into your post history and noticed you've done exactly the same thing on the Heikin Ashi Thread: http://www.traderslaboratory.com/forums/46/heikin-ashi-trend-indicator-951-5.html#post69718 So then : a) it not your problem, it's the indicators b) you've never had a problem with ANY of them before. Strange.......... why would you keep doing this
  10. I don't think you will get anybody to respond when you only post a link to ..... a) another site which they would then have to register for just to see what it looks like. b) the indicators and template for MT4, which if someone is willing to convert over, they would have to have MT4 installed just to see the code. Your best bet would be to post some screenshots of the indicator and also copy the code into a text file, so if someone fancies having a go, then at least they don't have to spend ages doing the homework which should have already been done for them. Cheers Blu-Ray
  11. Install the indicator onto your chart, but on the scaling tab, change it to ..... " Left axis " Sub Graph 1..... and it should work from there. Cheers Blu-Ray
  12. Lol..... beat me to it Yes very true... good thinking. Cheers Blu-Ray
  13. Apologies for misunderstanding.... so are you only wanting to plot the dots within the box you marked ? Cheers Blu-Ray
  14. Not sure if this is what you're looking for .... but why don't you just plot the showme's x amount of ticks away for high / low..... this way it's removed from the price bars but still visible. example: Inputs: TickDistance(4); Vars: Mintick(0); Mintick = minmove/pricescale; If { your condition happens } then Plot1(High+(TickDistance*Mintick)," " ); Hope this helps Blu-Ray
  15. The BR_Squeeze_Radar will not work directly on a chart, it is only for use with RadarScreen. Hope this helps Blu-Ray
  16. Have a look over at the NinjaTrader forum and do a search for "PaintBarFactory" or "PBF Squeeze" and you should find something over there. Hope this helps Blu-Ray
  17. Hi Soulman It's because I converted plot3 ( accidently ) into a string, so it's actually sorting by string rather by numerical...... edit the code and delete this line:..........."setplottype (3,2) " ................ and it should work okay. Cheers Blu-Ray
  18. No... Metatrader is a different language to Tradestations EasyLanguage. Hope this helps Blu-Ray
  19. Hi Dovetree Here's the TradeStation description for setplottype ....... It's basically converted plot3 into a string......... don't ask me why I did that lol..... I can't remember. Just delete the line and you should be good to go. Cheers Blu-Ray
  20. Here's the code for the RadarScreen version, just create an indicator, copy the code and then insert into radarscreen and it should work okay. Hope this helps Blu-Ray BR_Squeeze_Radar.txt
  21. No Problem..... once you get it enabled, then it should load up fine. Cheers Blu-Ray
  22. Sounds a daft question........ but do you have radarscreen enabled? Cheers Blu-Ray
  23. Blu-Ray

    Volume Splitter

    Thanks Tams for the pics.... yes they have some bizzare indicators and the bloke on the videos talks like he's spaced out at times. Thanks zdo.... yes what I'm after is someone who is trialling this indicator. Once we've found someone using TS data then I would just need to arrange to take some screenshots of, for example, a 1min chart of the ES in real time..... so the chart is big enough to shows me the values and in the meantime I can run a chart concurrently at my side & i'll try & match it up. Cheers Blu-Ray
  24. Blu-Ray

    Volume Splitter

    Thanks, but since the indicator is based in real time only, I need to get some specific screenshots, so I can synchronise some charts to replicate it. Cheers Blu-Ray
  25. Blu-Ray

    Volume Splitter

    To sum up the questions so far within this thread......... Yes this can definately be coded into Easy Language. If somebody is currently having a trial of EOT's volume splitter, then can they let me know & we can get some screenshots and I'll do my best at replicating the indicator. Cheers Blu-Ray
×
×
  • Create New...

Important Information

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