Search found 15 matches

by tito0224
10 Dec 2014
Forum: MultiCharts
Topic: LOW IN jAN CRUDE
Replies: 1
Views: 900

LOW IN jAN CRUDE

Does anyone know why the low in Jan. crude is 60.43 at 11.50 and on my multi charts it had a low of only 60.46?
by tito0224
14 Jun 2013
Forum: MultiCharts .NET
Topic: Backtesting engine
Replies: 1
Views: 1716

Backtesting engine

Is it possible to use the backtesting engine from code to evaluate many evolving strategies continuously?

Thanks
John
by tito0224
05 Jun 2013
Forum: MultiCharts .NET
Topic: Function which can alter previous values.
Replies: 6
Views: 2503

Re: Function which can alter previous values.

OK, so why not only plot when the count reaches your threshold and is locked in? You don't have to plot every bar, only the ones that matter (to you). In historical mode this is fine, but in real time during the course of trading the user wants to watch the charts and see the counts forming. So the...
by tito0224
05 Jun 2013
Forum: MultiCharts .NET
Topic: Function from Startegy and Signal
Replies: 7
Views: 2900

Re: Function from Startegy and Signal

I know how to select update on every tick for the Indicator- but I do not see any option for this for the strategy (if you mean use Bar Magnifier then I have tried with and without it and it is behaving the same..... but I have my code wrapped in: if (Bars.Status == EBarState.Close) { ... } But it s...
by tito0224
05 Jun 2013
Forum: MultiCharts .NET
Topic: Function from Startegy and Signal
Replies: 7
Views: 2900

Function from Startegy and Signal

Hi, I am using the same function from an indicator and a signal. It is working as expected from the Indicator, however it is not always returning the correct values when being used in a signal. I thought it was related to having IOG turned on in the signal but I have having the same problem even whe...
by tito0224
05 Jun 2013
Forum: MultiCharts .NET
Topic: Function which can alter previous values.
Replies: 6
Views: 2503

Re: Function which can alter previous values.

The logic sounds a bit odd...using your example, you say "lock in", does that mean only once the value is locked in, then you want to do some sort of calculation with this bar counting part of the code? Yes. As soon as the count hits a certain number it will be considered complete and locked in and...
by tito0224
31 May 2013
Forum: MultiCharts .NET
Topic: Function which can alter previous values.
Replies: 6
Views: 2503

Re: Function which can alter previous values.

Well what is the best way to accomplish building an indicator where your historical values can be updated until a certain point then locked in. For example, I need to count how many bars have closes greater then the previous bar. For each bar that closes greater than the previous bar I store the cou...
by tito0224
30 May 2013
Forum: MultiCharts .NET
Topic: Function which can alter previous values.
Replies: 6
Views: 2503

Function which can alter previous values.

I would like to use a Function, or a VariableObject or VariableSeries where I could alter previous values using barsBack. For example: protected override void Create() { // create variable objects and function objec values = new VariableSeries<int>(this); } protected override void CalcBar() { values...
by tito0224
24 May 2013
Forum: MultiCharts .NET
Topic: TextObject
Replies: 1
Views: 1508

TextObject

Hi I am placing text objects on the chart from an Indicator. I would like to be able to "lock" any text or drawing objects that were placed on the chart from the indicator so that while I'm using the chart I don't accidentally move to delete them. The other trading platform had a feature similar to ...
by tito0224
22 May 2013
Forum: MultiCharts .NET
Topic: Multi time frame signal [SOLVED]
Replies: 4
Views: 4406

Re: Multi time frame signal [SOLVED]

Thanks. I got BarsOfData(2) working correctly now. How do I get the data for the currently open Bar? for example, we are currently trading in the 11:00 am bar. It is not complete yet, but I would like to get the Open, High, and Low of this bar. I used the below but only seem to get the last closed b...
by tito0224
15 May 2013
Forum: MultiCharts .NET
Topic: Multi time frame signal [SOLVED]
Replies: 4
Views: 4406

Multi time frame signal [SOLVED]

I would like to use the same signal criteria on two different time frames, ie. 5 min and 60 min and when they are both true enter a trade. Is there an easy way to accomplish this? I tried to plot the 60 minute data on the same chart and use the BarsOfData(1) method but I always only get the 5 minute...
by tito0224
03 May 2013
Forum: User Contributed Studies
Topic: Bar counting indicator
Replies: 0
Views: 2175

Bar counting indicator

Hey all, I wrote a bar counting indicator using demark td sequential rules with some minor modifications to fit my needs. It has been working well for me. I still plan to adapt it to be able to use it in signals but I haven't got that far yet. Please feel free to try it out and provide feedback or c...
by tito0224
03 May 2013
Forum: User Contributed Studies
Topic: Ichimoku Indicator
Replies: 17
Views: 14160

Re: Ichimoku Indicator

for some reason mine doesn't plot properly.

attached image is what I get
Make sure you have enough bars on your chart (at least 52 but 100 would be better)
by tito0224
03 May 2013
Forum: User Contributed Studies
Topic: Ichimoku Indicator
Replies: 17
Views: 14160

Re: Ichimoku Indicator

Henry,

The only problem with setting "maximum fill" is that the fill of the bars goes beyond the top and bottom lines of the cloud. If you are ok with that then it works fine. I wish there was an easier way to accurately shade between two lines.

Thanks
by tito0224
01 May 2013
Forum: User Contributed Studies
Topic: Ichimoku Indicator
Replies: 17
Views: 14160

Re: Ichimoku Indicator

Here is one I wrote that is working well for me.

Go to advanced search