forex software

Create and Test Forex Strategies

forex software

Skip to forum content

Forex Software

Create and Test Forex Strategies

You are not logged in. Please login or register.


Forex Software → Technical Indicators → Pivot Point Indicator

Pages 1

You must login or register to post a reply

RSS topic feed

Posts: 6

Topic: Pivot Point Indicator

attached here the pivotpoint indicator 4 slots 
Note: the open close filter part use( R3 & S3 only)  until now  so you can consider it modification of the top bottom indicator but using S3 instead of bottom and R3 instead of Top

Post's attachments

PivotPoints Custom.cs 25.81 kb, 22 downloads since 2013-12-22 

You don't have the permssions to download the attachments of this post.

Re: Pivot Point Indicator

i Have a request !!  how to shift by bars ??

This is what i did but not working

IndParam.NumParam[1].Caption = "Shift";
IndParam.NumParam[1].Value = 0;
IndParam.NumParam[1].Min = 0;
IndParam.NumParam[1].Max = 200;
IndParam.NumParam[1].Enabled = true;
IndParam.NumParam[1].ToolTip = "The number of bars to shift with.";
var iShift = (int)IndParam.NumParam[1].Value;

convert

int firstBar = 1;

to

int firstBar = 1 + iShift + 2;
for (int iBar = 1; iBar < Bars; iBar++)

to

for (int iBar = 1; iBar < Bars - iShift; iBar++)
adH[iBar] = dTop;
adL[iBar] = dBottom;
 adC[iBar] = Close[iBar - 1];

  to

adH[iBar+ iShift] = dTop;
adL[iBar+ iShift] = dBottom;
adC[iBar+ iShift] = Close[iBar - 1];

Re: Pivot Point Indicator

Any help regarding that issue!!!

Re: Pivot Point Indicator

Please check the indicator. It seems that the indicator is working with FSB Pro, but there are some issues to check:

http://s5.postimg.org/4cwthuqab/piv1.jpg

http://s5.postimg.org/ja5aiv3ir/piv2.jpg

Re: Pivot Point Indicator

Hello zenoni
i tested it using FSB and it works fine so i suppose it will work by default in FSB Pro !!!!

Re: Pivot Point Indicator

Its working but the problem '' as i think'' in  public override void SetDescription()

i didnot write the code block that describes the actions

example

case "The bar opens below a S3":
                    EntryFilterLongDescription = "the bar opens lower than " + sUpperTrade + "S3 " ;
                    EntryFilterShortDescription = "the bar opens higher than " + sLowerTrade + "S3" ;
                    break;


then i have to repeat the previous  block with the following conditions

"The bar opens above an R3",
"The bar opens below a S3",
"The bar opens above a S3",
"The position opens below an R3",
"The position opens above an R3",
"The position opens below a S3",
"The position opens above a S3",
"The bar opens above an R3 after opening below it",
"The bar opens below a S3 after opening above it",
"The bar opens above a S3 after opening below it"

The indicator still working fine but cosmetically will be like that

Posts: 6

Pages 1

You must login or register to post a reply

Forex Software → Technical Indicators → Pivot Point Indicator

Similar topics in this forum