Could someone fix these indicators to work on fractional pip broker feeds?

Attached File(s)
Can anyone help to fix this Pip-count indicator? 5 replies
fractional product inefficiency, please help me with an indicator! 1 reply
OrderSend slippage with fractional pip pricing 1 reply
fractional Pip indicator 1 reply
Question for VEGAS and others using Vegas system..... 2 replies
double pt;
if( Digits == 2 || Digits == 4 ) pt = Point; if( Digits == 3 || Digits == 5 ) pt = 10*Point; if( Digits == 6 ) pt = 100*Point;
Dislikedfor Daily
add the code below 'double ExtMapBuffer8[];'
Inserted Codedouble pt;
add the code below 'SetIndexBuffer(7,ExtMapBuffer8);'
Inserted Codeif( Digits == 2 || Digits == 4 ) pt = Point; if( Digits == 3 || Digits == 5 ) pt = 10*Point; if( Digits == 6 ) pt = 100*Point;
then replace all 'Point' below start() to 'pt'.
89*Point -> 89*pt
144*Point -> 144*pt;
...Ignored
if(Bid==ExtMapBuffer1[0] || Bid==ExtMapBuffer2[0]) if(Bid==ExtMapBuffer3[0] || Bid==ExtMapBuffer4[0] || Bid==ExtMapBuffer5[0]) if(Bid==ExtMapBuffer6[0] || Bid==ExtMapBuffer7[0] || Bid==ExtMapBuffer8[0])
DislikedIn addition, not related to fractional pip, but I found some bugs with alert and comment.
If you use them, modify the code.
both of Daily and WeeklyMonthly
change 3 if lines below 'if(Alerts)'
Inserted Codeif(Bid==ExtMapBuffer1[0] || Bid==ExtMapBuffer2[0]) if(Bid==ExtMapBuffer3[0] || Bid==ExtMapBuffer4[0] || Bid==ExtMapBuffer5[0]) if(Bid==ExtMapBuffer6[0] || Bid==ExtMapBuffer7[0] || Bid==ExtMapBuffer8[0])
move 'Comment(...' 4 lines to above the final 'return(0)'.
then change all '[limit]' to '[0]'Ignored
Dislikedhey calderone..... yeah the lights are burned out in that tunnel, it gets kinda dark......hIgnored
Disliked???
Do you have any questions?
Of course, the first modification or hayseed's file is enough for displaying the lines.
If you want to modify alert/comment and have any questions, ask me.Ignored