kramer62 8 posts msg #39850 - Ignore kramer62 | 
1/1/2006 4:13:46 PM
  how can i use this indicator ? it is not available in the Filter Builder.
 
 
  | 
kramer62 8 posts msg #39869 - Ignore kramer62 | 
1/2/2006 2:36:52 PM
  is there a combination or equation for it?
 
 
  | 
garryp 39 posts msg #39893 - Ignore garryp | 
1/3/2006 9:43:24 AM
  I *think* BOP is an unpublished proprietary indicator of TC2000 software.  It is related to but different from AD, as I recall.
 
 
  | 
kramer62 8 posts msg #39900 - Ignore kramer62 | 
1/3/2006 11:36:59 AM
  i already got the equation for AmiBroker,, and as i recall i saw it once in a forum for MetaStock.
 i.e. it is spread out.
 
 
  | 
garryp 39 posts msg #39912 - Ignore garryp | 
1/3/2006 6:49:04 PM
  Can you share the manner of calculation for BOP?
 
 
  | 
yepher 359 posts msg #39919 - Ignore yepher | 
1/3/2006 11:09:12 PM
  Although this is not working yet here is the basic idea behind the balance of power indicator. I think it is over the SF set limit. I tried on professional and regular account and neither returned any results. 
 
  	    
 
 
 
 Here is the working version from Metastock.
 
 THL:=If(H-L=0,.00001,H-L);
 {Reward Based on the Open}
 
 BuRBoO:=(H-O)/(THL);
 BeRBoO:=(O-L)/(THL);
 {Reward Based on the Close}
 
 BuRBoC:=(C-L)/(THL);
 BeRBoC:=(H-C)/(THL);
 {Reward Based on the Open-Close}
 
 BuRBoOC:=If(C>O,(C-O)/(THL),0);
 BeRBoOC:=If(C>O,0,(O-C)/(THL));
 BOP:=(BuRBoO+BuRBoC+BuRBoOC)/3 - (BeRBoO+BeRBoC+BeRBoOC)/3;
 BOP
 
 
 
 -- Yepher
 
 
  | 
yepher 359 posts msg #39932 - Ignore yepher | 
1/4/2006 2:51:03 PM
  Fixed a couple of typos:
 
  	    
 
 
  | 
yepher 359 posts msg #39954 - Ignore yepher | 
1/4/2006 11:51:14 PM
  Here is the working version or BOP:
 
  	    
 
 -- Yepher
 
 
  | 
mktmole 325 posts msg #40016 - Ignore mktmole | 
1/6/2006 2:44:16 PM
  How would it be possible to display these total overall positive and negative raw Bull and Bear Power numbers? ( the more positive the greater the Bull..the more negative etc.etc
 
 Thanks
 
 
  | 
yepher 359 posts msg #40019 - Ignore yepher | 
1/6/2006 5:53:44 PM
  Not exactly sure what you are asking. Maybe adding this is what you are looking for? 
 
 "AND add column BOP"
 
 -- Yepher
 
 
  |