Search found 7 matches

by Micardo
13 Mar 2011
Forum: MultiCharts
Topic: Buy on Break of Pivot High
Replies: 2
Views: 834

Re: Buy on Break of Pivot High

Hi,

One other thing. Yes I have tried this as an indicator and it plots in a sub window below the chart. Not on the actual chart like the real function, but in any case the values in the subchart are correct and are plotted, so I am not sure what the issue is.

Thanks
by Micardo
13 Mar 2011
Forum: MultiCharts
Topic: Buy on Break of Pivot High
Replies: 2
Views: 834

Buy on Break of Pivot High

Hi, I am still trying to get the following code to work. inputs: Price( High ), LeftStrength( 3 ), RightStrength( 2 ) ; {Uptrend Definition} if XAverage(Close, 30) > XAverage(Close, 50) AND XAverage(Close, 50) > XAverage(Close, 100) then {Buy Condition} condition1 = PivotHighVSBar( 1, Price, LeftStr...
by Micardo
02 Mar 2011
Forum: MultiCharts
Topic: Another Simple System
Replies: 1
Views: 826

Another Simple System

Hi Everyone, I am trying to develop a system where you take a buy above the PivotHighVSBar. However everytime I try to add it to the chart I get an error - "Trying access at data to future. Bars reference value: -1." The code I am using is inputs: Price( High ), LeftStrength( 3 ), RightStrength( 3 )...
by Micardo
01 Mar 2011
Forum: MultiCharts
Topic: Simple Range Breakout indicator
Replies: 6
Views: 1956

Re: Simple Range Breakout indicator

Hi, Sorry I didn't realise that was the etiquette. Here it is value99 = Highest(High[1], 20); condition1 = Close > value99; if condition1 then buy("20 Day Long") next bar at market; value98 = Lowest(Low[1], 10); condition2 = Close < value98; if condition2 then sell("Close 20 Day Long") next bar at m...
by Micardo
01 Mar 2011
Forum: MultiCharts
Topic: Portfolio Backtester
Replies: 2
Views: 849

Portfolio Backtester

Hi Everyone, I am trying to test one of my strategies on the portfolio backtester but am getting some really strange results. Are there any tutorials on how to use this effectively as the multicharts help has not helped me as of yet. The problem is that the trade sizes are ridiculously small and I c...
by Micardo
01 Mar 2011
Forum: MultiCharts
Topic: Simple Range Breakout indicator
Replies: 6
Views: 1956

Re: Simple Range Breakout indicator

Hi Everyone,

Thanks for your input. I managed to work it out in the end but thank you all for your help and efforts.
by Micardo
26 Feb 2011
Forum: MultiCharts
Topic: Simple Range Breakout indicator
Replies: 6
Views: 1956

Simple Range Breakout indicator

Hi, I am attempting to learn easylanguage and have been working through the document trying the exercises etc. I am struggling with my own attempt at a strategy and was wondering if someone could give me a pointer as to what I am doing wrong. Below is the code, I am only trying to get the vuys worki...

Go to advanced search