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.

brownsfan019

Open ECry Wish List Thread

Recommended Posts

A couple of suggestions.....

1) Be able to apply alerts on trend lines, or horizontal lines, or any line that is drawn eg; a box, elipse

 

2) Be able to set the DOM (middle price column) alert so that it defaults. Hence you can just right click on the price column.

 

3) Be able to set up the alerts so that if an indicator ticks up or down, or to a certain level it alerts.... an make this easy to turn on and off.

Eg; say you are using the Donchian (higher and low levels) you may wish to see when the next high tick goes off, without having to constantly be alerted by the low tick going off if in a downtrend.

 

If you can already do this then please show me the way..... I seem to find knew stuff on there every day. Liking the system.....just not my trading.

thanks.

Share this post


Link to post
Share on other sites

I wish that the gridlines between the rows and columns on the quotes windows for the updated releases (3.5.X.X+) could be removed so that it looks like the quote window of old (3.4.x.x and prior).

Share this post


Link to post
Share on other sites
Anyone have a Hull MA and Opening Range indicator or know where to get them...?

 

I can help you out with the Hull MA...

 

Cut and paste this into a new easylanguage indicator and compile:

 

Inputs: price(Close), length(21), 
	zeroLine(0.0), zeroVisible(false), 
    upColour(Blue), downColour(Red), sideColour(Yellow), colourDeltaBar(1); 

Value1 = jtHMA(price, length); 

//Plot1(Value1, "jtHMA"); 

If ZeroVisible = true then 
Plot2(zeroLine, "Zero"); 

{ Color criteria } 
if (Value1 > Value1[1]) then  
Plot1(Value1, "jtHMA", upColour)
else if (Value1 < Value1[1]) then  
Plot1(Value1, "jtHMA", downColour)
else if (Value1 = Value1[1]) then
Plot1(Value1, "jtHMA", sideColour); 	


#function jtHMA	 

Inputs: price(NumericSeries), length(NumericSimple); 
Vars: halvedLength(0), sqrRootLength(0); 

{ 
Original equation is: 
--------------------- 
waverage(2*waverage(close,period/2)-waverage(close ,period), SquareRoot(Period) 
Implementation below is more efficient with lengthy Weighted Moving Averages. 
In addition, the length needs to be converted to an integer value after it is halved and 
its square root is obtained in order for this to work with Weighted Moving Averaging 
} 

if ((ceiling(length / 2) - (length / 2))  <= 0.5) then 
halvedLength = ceiling(length / 2) 
else 
halvedLength = floor(length / 2); 

if ((ceiling(SquareRoot(length)) - SquareRoot(length))  <= 0.5) then 
sqrRootLength = ceiling(SquareRoot(length)) 
else 
sqrRootLength = floor(SquareRoot(length)); 

Value1 = 2 * WAverage(price, halvedLength); 
Value2 = WAverage(price, length); 
Value3 = WAverage((Value1 - Value2), sqrRootLength); 

jtHMA = Value3; 

 

And it looks like OEC just rolled out a 3.5.1.0 chart package... and the "save as default" option for imported indicators works again. Yay!!!

Share this post


Link to post
Share on other sites

Thanks!... I am playing with OEC and Ninja Trader demos. OEC looks so good but I am a bit concerned the support is not as deep as Ninja... But then I fired up Ninja and whooa.. blank charts?? Patsystem does not maintain data so I have to import data.. I am really taken by OEC's ability to trade on trendline breaks and if I can resolve the EL indicator import bumpiness I'll be all set... Not that I use that many anyway..

Share this post


Link to post
Share on other sites

I prefer OEC to Ninja myself. Unless your doing very complicated things in code I don't see an advantage to ninja personally. There will of course be those that tell you anything but ZenFire is crap, but frankly i've been impressed by OEC's data in the recent volatility and between you me and the wall, I execute trades through Infinity anyway so i'm no impacted anyway.

Share this post


Link to post
Share on other sites
A couple of suggestions.....

1) Be able to apply alerts on trend lines, or horizontal lines, or any line that is drawn eg; a box, elipse

 

attachment.php?attachmentid=21438&stc=1&d=1276477727

 

 

2) Be able to set the DOM (middle price column) alert so that it defaults. Hence you can just right click on the price column.

 

I don't understand the idea here. Please explain further.

3) Be able to set up the alerts so that if an indicator ticks up or down, or to a certain level it alerts.... an make this easy to turn on and off.

Eg; say you are using the Donchian (higher and low levels) you may wish to see when the next high tick goes off, without having to constantly be alerted by the low tick going off if in a downtrend.

 

I'm not sure if you can create an alert like this; however, I've used coloring for this purpose before and works nicely. This will color your bar/candle based on the parameters you set. Anytime that parameter is met, a coloring will print on top of your normal bar/candle. If there's a way to do it via alerts, I'm not sure but in the meantime you can try the coloring out.

 

attachment.php?attachmentid=21439&stc=1&d=1276477727

5aa7101336386_OECALERTS.gif.26a62d19d71de7aa1787528911e8815d.gif

5aa710133a250_OECCOLORING.gif.ed45a3f0bb273c591e7cc609286de616.gif

Share this post


Link to post
Share on other sites

Thanks BrownsFan.......

1) very handy I did not realise that when you click right on the trendline/horizontal line and then go into alerts, it would go off that, I was busy looking in properties and a few other places.

2) In the DOM when you left click on the price column it can create an alert. I ideally wanted to set it up as a default (much like many of the other tasks in OEC) and hence meaning you could just left click on the price column to set an alert with one click. Not a major issue, just something that might be quick and easy.

 

3) Thanks for the bar chart, colouring. This will not be enough as I still need to watch it, and if I have the indicator already showing it does not give much more info - handy none the less.

I was looking more at on the chart ALERTS > CREATE ALERTS > ADVANCED tab.

Thinking I was wondering if there was some way to set the alerts off a chart in here.

 

If you use the example of a higher high, lower low indicator (a donchian channel) it would be great to be able to alert when it breaks up or down initially, and then have the alert reset until the next time after it goes sideways for a few bars - (otherwise it will continue to fire)

 

 

I will keep looking as OEC has many hidden settings.

thanks.

Share this post


Link to post
Share on other sites

Not sure if this has been mentioned already, but I find the reporting and trading statistics very poor or not not intuitive enough.

 

OEC should improve their report generating system

- Generating reports takes forever to process

- Users should be able to create custom reports within the OEC platform that can be easily generated daily

 

I'm sure this is already well known, but trend lines can often skew chart viewing which throws off the x/y coordinate ratios. Rather than having candles saturate the entire chart window, trend lines can cause the candles to become compressed until they are removed. Major pain.

Share this post


Link to post
Share on other sites

I would like a risk to reward indicator that can be placed on the chart that shows the stop loss risk and profit targets and shows the difference to risk/reward ex: 2:1 1:1.

 

The risk/reward indicator on tradingview.com is great but dont like paying a monthly fee just to us an indicator..see image references of indicator below.

 

 

 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Be careful who you blame.   I can tell you one thing for sure.   Effective traders don’t blame others when things start to go wrong.   You can hang onto your tendency to play the victim, or the martyr… but if you want to achieve in trading, you have to be prepared to take responsibility.   People assign reasons to outcomes, whether based on internal or external factors.   When traders face losses, it's common for them to blame bad luck, poor advice, or other external factors, rather than reflecting on their own personal attributes like arrogance, fear, or greed.   This is a challenging lesson to grasp in your trading journey, but one that holds immense value.   This is called attribution theory. Taking responsibility for your actions is the key to improving your trading skills. Pause and ask yourself - What role did I play in my financial decisions?   After all, you were the one who listened to that source, and decided to act on that trade based on the rumour. Attributing results solely to external circumstances is what is known as having an ‘external locus of control’.   It's a concept coined by psychologist Julian Rotter in 1954. A trader with an external locus of control might say, "I made a profit because the markets are currently favourable."   Instead, strive to develop an "internal locus of control" and take ownership of your actions.   Assume that all trading results are within your realm of responsibility and actively seek ways to improve your own behaviour.   This is the fastest route to enhancing your trading abilities. A trader with an internal locus of control might proudly state, "My equity curve is rising because I am a disciplined trader who faithfully follows my trading plan." Author: Louise Bedford Source: https://www.tradinggame.com.au/
    • SELF IMPROVEMENT.   The whole self-help industry began when Dale Carnegie published How to Win Friends and Influence People in 1936. Then came other classics like Think And Grow Rich by Napoleon Hill, Awaken the Giant Within by Tony Robbins toward the end of the century.   Today, teaching people how to improve themselves is a business. A pure ruthless business where some people sell utter bullshit.   There are broke Instagrammers and YouTubers with literally no solid background teaching men how to be attractive to women, how to begin a start-up, how to become successful — most of these guys speaking nothing more than hollow motivational words and cliche stuff. They waste your time. Some of these people who present themselves as hugely successful also give talks and write books.   There are so many books on financial advice, self-improvement, love, etc and some people actually try to read them. They are a waste of time, mostly.   When you start reading a dozen books on finance you realize that they all say the same stuff.   You are not going to live forever in the learning phase. Don't procrastinate by reading bull-shit or the same good knowledge in 10 books. What we ought to do is choose wisely.   Yes. A good book can change your life, given you do what it asks you to do.   All the books I have named up to now are worthy of reading. Tim Ferriss, Simon Sinek, Robert Greene — these guys are worthy of reading. These guys teach what others don't. Their books are unique and actually, come from relevant and successful people.   When Richard Branson writes a book about entrepreneurship, go read it. Every line in that book is said by one of the greatest entrepreneurs of our time.   When a Chinese millionaire( he claims to be) Youtuber who releases a video titled “Why reading books keeps you broke” and a year later another one “My recommendation of books for grand success” you should be wise to tell him to jump from Victoria Falls.   These self-improvement gurus sell you delusions.   They say they have those little tricks that only they know that if you use, everything in your life will be perfect. Those little tricks. We are just “making of a to-do-list before sleeping” away from becoming the next Bill Gates.   There are no little tricks.   There is no success-mantra.   Self-improvement is a trap for 99% of the people. You can't do that unless you are very, very strong.   If you are looking for easy ways, you will only keep wasting your time forgetting that your time on this planet is limited, as alive humans that is.   Also, I feel that people who claim to read like a book a day or promote it are idiots. You retain nothing. When you do read a good book, you read slow, sometimes a whole paragraph, again and again, dwelling on it, trying to internalize its knowledge. You try to understand. You think. It takes time.   It's better to read a good book 10 times than 1000 stupid ones.   So be choosy. Read from the guys who actually know something, not some wannabe ‘influencers’.   Edit: Think And Grow Rich was written as a result of a project assigned to Napoleon Hill by Andrew Carnegie(the 2nd richest man in recent history). He was asked to study the most successful people on the planet and document which characteristics made them great. He did extensive work in studying hundreds of the most successful people of that time. The result was that little book.   Nowadays some people just study Instagram algorithms and think of themselves as a Dale Carnegie or Anthony Robbins. By Nupur Nishant, Quora Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • there is no avoiding loses to be honest, its just how the market is. you win some and hopefully more, but u do lose some. 
    • $CSCO Cisco Systems stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?CSCOSEPN Septerna stock watch for a bottom breakout, good upside price gap
    • $CSCO Cisco Systems stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?CSCOSEPN Septerna stock watch for a bottom breakout, good upside price gap
×
×
  • Create New...

Important Information

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