I'm openly soliciting help from all the affiliate marketers here on how to get the best keywords for a PPC campaign.
KEI is an analysis of a keywords potential that is used by wordtracker, but it's based on SEO ... not PPC. I'm trying work something out so I can attach a number to a keyword's potential & rank a list of words best to worst. Here's what I'm working with
$keyword = Keyword
$cpc = estimated CPC (adwords tool)
$volume = estimated volume (adwords tool)
$total_competition = total competition for that keyword found here
$ea = erect's algorithm ... the number that represents a keyword's potential for a PPC campaign (the bigger the better)
It looks simplistic and should do a decent job, but I'm interested in something better ... which is why we're having this conversation.
Basically the above 1st takes the $total_competition and if the number is > 5, double it. I've got this in place because I know 10 ads or so show up on each search results page. Ignoring broad matching, QS & bid price ... having less than 5 people competing for ad space is valuable because even if you bid $0.05 it's possible you'll show up when using an exact match.
From there the function computes the volume / ctr fraction, which translates roughly into how much volume you get for your click price.
Then I take the result and multiply it by 1 / $number_of_competition ... the bigger the competition the smaller the fraction therefore reducing the final $ea total
To make this more challenging for me, I have no data to test with and I don't run PPC campaigns ... I'm totally an organic guy. I'd appreciate WF chiming with your experience in this so that I can make this formula golden (like a brick, not a shower).
Ooh yea, don't say "volume is the only factor I look at". I know you're a badass who pwns the QS and has an unlimited budget. Good for you, pretend you need to convert on those cheap long-tails for a sec and help a brother out.
KEI is an analysis of a keywords potential that is used by wordtracker, but it's based on SEO ... not PPC. I'm trying work something out so I can attach a number to a keyword's potential & rank a list of words best to worst. Here's what I'm working with
$keyword = Keyword
$cpc = estimated CPC (adwords tool)
$volume = estimated volume (adwords tool)
$total_competition = total competition for that keyword found here
$ea = erect's algorithm ... the number that represents a keyword's potential for a PPC campaign (the bigger the better)
PHP:
if ($total_competition > 5) { $total_competition = ( $total_competition * 2 ) ; }
$ea = ( ($volume / $cpc) * (1 / $total_competition) ) ;
It looks simplistic and should do a decent job, but I'm interested in something better ... which is why we're having this conversation.
Basically the above 1st takes the $total_competition and if the number is > 5, double it. I've got this in place because I know 10 ads or so show up on each search results page. Ignoring broad matching, QS & bid price ... having less than 5 people competing for ad space is valuable because even if you bid $0.05 it's possible you'll show up when using an exact match.
From there the function computes the volume / ctr fraction, which translates roughly into how much volume you get for your click price.
Then I take the result and multiply it by 1 / $number_of_competition ... the bigger the competition the smaller the fraction therefore reducing the final $ea total
To make this more challenging for me, I have no data to test with and I don't run PPC campaigns ... I'm totally an organic guy. I'd appreciate WF chiming with your experience in this so that I can make this formula golden (like a brick, not a shower).
Ooh yea, don't say "volume is the only factor I look at". I know you're a badass who pwns the QS and has an unlimited budget. Good for you, pretend you need to convert on those cheap long-tails for a sec and help a brother out.