[amibroker] Re: mirror image of charts

2007-11-16 Thread treatmentinprogress
In the interest of learning all that I can, why would you want to do 
this?

--- In amibroker@yahoogroups.com, carlacash26 [EMAIL PROTECTED] 
wrote:

 YES!! This does exactly what I want!
 Thanks ChrisB and gp_sydney for your help!
 
 
 --- In amibroker@yahoogroups.com, ChrisB kris45mar@ wrote:
 
  carlacash26
  
  Could you see if this does what you need?
  
  Can't remember where I say this for credits.
  
  
  
  // Flip price chart
  
  Plot(C,,colorBlack,64);
  
  if(ParamToggle(Upside Down?,No|Yes))
  GraphXSpace = -100;
  
  ***
  Just use the param function to Flip the chart.
  regards
  
  ChrisB
  
  carlacash26 wrote:
  
   I would like to chart a mirror image of my charts.
   An uptrend would become a downtrend, and vice versa.
  
   Is this possible to do?
  
   I would maybe know how to program it, but I don't know how to
 implement
   it really. How would I know what values I would calculate for 
each
 of O
   H L C?
  
 





Re: [amibroker] Re: mirror image of charts

2007-11-16 Thread ricko
it makes you losses look better!!

 
Rick Osborn 



- Original Message 
From: treatmentinprogress [EMAIL PROTECTED]
To: amibroker@yahoogroups.com
Sent: Friday, November 16, 2007 9:29:10 AM
Subject: [amibroker] Re: mirror image of charts

In the interest of learning all that I can, why would you want to do 
this?

--- In [EMAIL PROTECTED] ps.com, carlacash26 carlacash26@ ... 
wrote:

 YES!! This does exactly what I want!
 Thanks ChrisB and gp_sydney for your help!
 
 
 --- In [EMAIL PROTECTED] ps.com, ChrisB kris45mar@ wrote:
 
  carlacash26
  
  Could you see if this does what you need?
  
  Can't remember where I say this for credits.
  
  
  
  // Flip price chart
  
  Plot(C,,colorBlac k,64);
  
  if(ParamToggle( Upside Down?,No|Yes ))
  GraphXSpace = -100;
  
  ***
  Just use the param function to Flip the chart.
  regards
  
  ChrisB
  
  carlacash26 wrote:
  
   I would like to chart a mirror image of my charts.
   An uptrend would become a downtrend, and vice versa.
  
   Is this possible to do?
  
   I would maybe know how to program it, but I don't know how to
 implement
   it really. How would I know what values I would calculate for 
each
 of O
   H L C?
  
 





Re: [amibroker] Re: mirror image of charts

2007-11-16 Thread ChrisB
Rick

LOL sure does. Should have an invert button on our trading accounts!

treatmentinprogress/brian

Google

shares bias charts invert

Something to do with eliminating bias of perception of which way a chart 
is going.

Theory:

If you want to go long an instrument, flip the chart: if you still want 
to go long you are in deep trouble.

Neat tool. Never used it.

ChrisB


[EMAIL PROTECTED] wrote:
 it makes you losses look better!!

  
 Rick Osborn


 - Original Message 
 From: treatmentinprogress [EMAIL PROTECTED] com
 To: [EMAIL PROTECTED] ps.com
 Sent: Friday, November 16, 2007 9:29:10 AM
 Subject: [amibroker] Re: mirror image of charts

 In the interest of learning all that I can, why would you want to do
 this?

 --- In [EMAIL PROTECTED] ps.com 
 mailto:amibroker%40yahoogroups.com, carlacash26 carlacash26@ ...
 wrote:
 
  YES!! This does exactly what I want!
  Thanks ChrisB and gp_sydney for your help!
 
  



[amibroker] Re: mirror image of charts

2007-11-15 Thread gp_sydney
Maybe just flip it around its mid-point. Use the Highest and Lowest
functions to get the extremes, take the average as the mid-point, and
flip each value around that mid-point (eg. if the midpoint was $10,
then $11 would become $9, $12 would become $8, etc. and vice-versa).
The Highest value would become the Lowest and the Lowest the Highest,
so the total price range would remain the same.

Note that you'd also need to swap the H and L arrays, and the O and C
arrays too if you wanted it flipped properly.

GP


--- In amibroker@yahoogroups.com, carlacash26 [EMAIL PROTECTED] wrote:

 I would like to chart a mirror image of my charts.
 An uptrend would become a downtrend, and vice versa.
 
 Is this possible to do?
 
 I would maybe know how to program it, but I don't know how to implement 
 it really. How would I know what values I would calculate for each of O 
 H L C?





[amibroker] Re: mirror image of charts

2007-11-15 Thread carlacash26
YES!! This does exactly what I want!
Thanks ChrisB and gp_sydney for your help!


--- In amibroker@yahoogroups.com, ChrisB [EMAIL PROTECTED] wrote:

 carlacash26
 
 Could you see if this does what you need?
 
 Can't remember where I say this for credits.
 
 
 
 // Flip price chart
 
 Plot(C,,colorBlack,64);
 
 if(ParamToggle(Upside Down?,No|Yes))
 GraphXSpace = -100;
 
 ***
 Just use the param function to Flip the chart.
 regards
 
 ChrisB
 
 carlacash26 wrote:
 
  I would like to chart a mirror image of my charts.
  An uptrend would become a downtrend, and vice versa.
 
  Is this possible to do?
 
  I would maybe know how to program it, but I don't know how to
implement
  it really. How would I know what values I would calculate for each
of O
  H L C?