Archive for July, 2009

Action Needed – Broadcaster Freedom Act

Write to all of your federal officials at once!
Go to www.congress.org, enter your zip and select “Federal” under the “Write Your Elected Officials” heading.  (Unselect the check box of those who you do not want to receive your note.)

To: US House Representative

Subject:

Tell Speaker Pelosi to Allow Full Vote on Broadcaster Freedom Amendment

Issue Area: Financial Services

Congressman Mike Pence and his fellow Congressman and free speech champion Greg Walden, will try to have the Broadcaster Freedom Act – which will help protect talk radio from Obama’s FCC – added as an amendment to the Financial Services budget bill on Tuesday.
But according to Congressman Pence, Speaker Pelosi won’t allow it - UNLESS WE DEMAND THAT SHE DOES SO.

As you may recall, the Broadcaster Freedom Act of 2009 would amend the Communications Act of 1934 to prohibit the Federal Communications Commission (FCC), from requiring broadcasters to arbitrarily present opposing viewpoints on controversial issues of public importance, commonly referred to as the Fairness Doctrine.

Please locate your Representatives phone number here (www.congressmerge.com) and call and fax them today, demanding that he or she tell Speaker Pelosi to allow a full, fair up or down vote on the Broadcaster Freedom Amendment. You may also contact them by email.  However, a phone call will be more immediate and effective at this point.
The time is now to protect talk radio! Please, pick up the phone and start dialing right away. And don’t stop; we need you to call immediately.

Tick Extreme and Paintbar Indicator

{ Simple indicator to ID new extreme values, while leaving
an indication of prior Highs & Lows. Existing TS indicator,
Day Open Hi Lo Lines erases prior highs & lows, showing only
most recent extreme.

The above implemented by drawing H_Lines across all new extremes.
This is working, but when small, barely visible new extremes
occur, it is often difficult to see which candle caused the
new extreme. Thus a PB indicator will also be added to color the
TICK bar that causes the new extreme value.
}

vars:
DayHi ( 0 ) ,
DayLow ( 0 ) ;

if date <> date[1] then
begin
DayHi = high ;
DayLow = Low ;
end ;

if High > DayHi then
begin
DayHi = High ;
end ;

if Low < DayLow then
begin
DayLow = Low ;
end ;

Plot1( DayHi, "Tick Hi" ) ;
Plot2( DayLow, "Tick Lo" ) ;
Plot3( 0, "Z-Line" ) ;

(Above this is the code for the indicator do not copy below this.)
--------------------------------------------------------------------------
(Below this is the code for the paintbar do not copy above this.)

{ PaintBar for tick extremes }

vars:
BarColor ( White ),
DayHi ( 0 ) ,
DayLow ( 0 ) ;

if date <> date[1] then
begin
DayHi = high ;
DayLow = Low ;
end ;

BarColor = White ;

if High > DayHi then
begin
DayHi = High ;
BarColor = Red ;
end ;

if Low < DayLow then
begin
DayLow = Low ;
BarColor = Green ;
end ;

PlotPaintBar( High, Low, “Xtreme”, BarColor ) ;